-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
STM32 NUCLEO-144: compiling failed #2
Comments
If you are compiling for the STM32 nucleo, you should probably not be
including the ESP32 wifi driver (that's for a different chip). What is the
target / example application you were trying to compile?
|
Hi, I was thought about that, but I didn't add any drivers for ESP32 WiFi.
Very basic compilation to check if the libs are ok. Even if I'm removing everything for RTOS is still failing with same error. Just load lwip.h and openMRNlite. Kind regards, |
Aha, it seems that we have a .cpp file which is specific to the esp32 but
it is being compiled under all targets.
add an
#ifdef ESP32
...
#endif
around the entire contents of OpenMRNLite-0.1.1\src\freertos_drivers\
esp32\Esp32WiFiManager.cpp
We'll have to upstream that ifdef but this will get you going faster.
|
I'll add that to my open PR for the same file... |
Hi, Thanks for the fix. Is not giving anymore this error, but I'm receiving this error:
Kind regards, |
Hi,
I'm trying to compile OpenMRNLite on STM32 Nucleo-144 and the compiler is complaining that is not finding netdb.h file. I've tried to find this file, but I don't know if is another library which is providing it.
Here is the output:
Any ideas?
The text was updated successfully, but these errors were encountered: