We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
ets_delay_us is declared in osapi.h as follows:
ets_delay_us
void ets_delay_us(uint16_t us);
in fact, its implementation operates on 32-bit argument, not 16-bit. it should be uint32_t.
uint32_t
The text was updated successfully, but these errors were encountered:
Fix usleep on ESP8266, add unit test
7c1266c
Caused by espressif/ESP8266_NONOS_SDK#31 PUBLISHED_FROM=8966102143dd21704cb12155256c603a02497ad8
6fc1eea
Thanks, @rojer update in commit 4671b17
Sorry, something went wrong.
No branches or pull requests
ets_delay_us
is declared in osapi.h as follows:in fact, its implementation operates on 32-bit argument, not 16-bit. it should be
uint32_t
.The text was updated successfully, but these errors were encountered: