Mbed OS 6 Docs | Power Optimization Tutorial contains deprecated wait_ms()
Opened this issue · 0 comments
cbusse1 commented
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...
#include "mbed.h"
DigitalOut led(LED1);
int main() {
while (1) {
// blink the LED
led = !led;
// sleep for two seconds
ThisThread::sleep_for(2s);
}
}
Found
#include "mbed.h"
DigitalOut led(LED1);
int main() {
while (1) {
// blink the LED
led = !led;
// sleep for two seconds
wait_ms(2000);
}
}