Added Standby mode into WakeUp library. This is a checking program for the standby mode on Nucleo-F446RE and other STM32 series.
Fork of study_step0 by
Please refer notebook.
/users/kenjiArai/notebook/standby-mode-current-consumption-on-nucleo-f446re/#
main.cpp
- Committer:
- kenjiArai
- Date:
- 2017-08-10
- Revision:
- 0:1672d0903bdc
- Child:
- 1:abe49c3395cd
File content as of revision 0:1672d0903bdc:
/* * Mbed Application program / Study step1 -> LED Blinky * * Copyright (c) 2017 Kenji Arai / JH1PJL * http://www.page.sannet.ne.jp/kenjia/index.html * http://mbed.org/users/kenjiArai/ * Created: August 10th, 2017 * Revised: August 10th, 2017 */ #include "mbed.h" DigitalOut my_led(LED1); int main() { while(1) { my_led = !my_led; wait(1.0); } }