We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91c007e commit 7e73e0bCopy full SHA for 7e73e0b
cores/rp2040/lwip_wrap.cpp
@@ -89,7 +89,7 @@ extern "C" {
89
extern void __real_lwip_init();
90
void __wrap_lwip_init() {
91
if (!_lwip_rng) {
92
- _lwip_rng = new XoshiroCpp::Xoshiro256PlusPlus(get_rand_64());
+ _lwip_rng = new XoshiroCpp::Xoshiro256PlusPlus(micros() * rp2040.getCycleCount());
93
__real_lwip_init();
94
}
95
0 commit comments