today i struggled suddenly with the same problem.
Before
HX711 scale(13, 12);
simply worked for month.
Yesterday I recompiled my code and ESP started to get Watchdog issues before setup()
So luckily I found this post and changed it to:
...
HX711 scale;
...
setup() {
scale.begin(13, 12);
scale.set_scale(cell_divider);
scale.set_offset(offset);
...
}
Can somebody explain me the reason?