Pioarduino esp32 moving arduino from 2.017 to 3.1 watchdog after 390 secondes

The code run well on arduino 2.17 but in 3.1 there is a watchdog after 390 s.
I commented a lot of my code. For exemple, in the loop all is commented, I just print the time. I do not understant why I have a watchdog in 3.1
The code can be see at:

If somebody can tell me where to look…
Best regards

Unfortunately the code doesn’t even compile now because of the missing “libraries” which where located in “./lib” before.

There are a few while-loops in your code which doesn’t call “delay()” or “yield()”. These loops may block the sketch until the watchdog kicks in.

Solved by @vorms itself via discord