-
-
Notifications
You must be signed in to change notification settings - Fork 8.2k
ESP8266 - conflicting types for 'ets_delay_us' #8095
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
Labels
Comments
In SDK 2.1.x the Try changing the us data type from https://github.com/micropython/micropython/blob/master/ports/esp8266/etshal.h#L9
|
It sounds like we should just remove that declaration in |
dpgeorge
added a commit
to dpgeorge/micropython
that referenced
this issue
Dec 20, 2021
These removed ones are either unused by MicroPython or provided by osapi.h in the SDK. In particular ets_delay_us() has different signatures for different versions of the SDK, so best to let it provide the declaration. Fixes issue micropython#8095. Signed-off-by: Damien George <damien@micropython.org>
See #8101. |
Mike, Damien thanks so much. |
dpgeorge
added a commit
to dpgeorge/micropython
that referenced
this issue
Dec 21, 2021
These removed ones are either unused by MicroPython or provided by osapi.h in the SDK. In particular ets_delay_us() has different signatures for different versions of the SDK, so best to let it provide the declaration. Fixes issue micropython#8095. Signed-off-by: Damien George <damien@micropython.org>
Fixed by 05bea70 |
leifbirger
pushed a commit
to leifbirger/micropython
that referenced
this issue
Jun 14, 2023
These removed ones are either unused by MicroPython or provided by osapi.h in the SDK. In particular ets_delay_us() has different signatures for different versions of the SDK, so best to let it provide the declaration. Fixes issue micropython#8095. Signed-off-by: Damien George <damien@micropython.org>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Is there a solution to this issue for ESP8266 GENERIC build ?
I saw a similar error in micropython forum, but no solution ?
The text was updated successfully, but these errors were encountered: