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
https://os.mbed.com/docs/mbed-os/v6.16/apis/power-optimization.html
#include "mbed.h" DigitalOut led(LED1); int main() { while (1) { // blink the LED led = !led; // sleep for two seconds ThisThread::sleep_for(2s); } }
#include "mbed.h" DigitalOut led(LED1); int main() { while (1) { // blink the LED led = !led; // sleep for two seconds wait_ms(2000); } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Mbed OS 6 Docs | Power Optimization Tutorial contains deprecated wait_ms()
Page link
https://os.mbed.com/docs/mbed-os/v6.16/apis/power-optimization.html
Expected to find...
Found
The text was updated successfully, but these errors were encountered: