Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
utils.cpp
- Committer:
- GaspardD
- Date:
- 2019-09-28
- Revision:
- 1:8faddee0e52f
- Child:
- 3:1b7eb426247e
File content as of revision 1:8faddee0e52f:
#include "utils.h" bool b_UTILS_flag_button = false; bool b_UTILS_flag_emergency_stop = false; Serial pc(USBTX, USBRX); InterruptIn button(USER_BUTTON); void init_interruptions(){ button.fall(&it_pressed); } void it_pressed(){ b_UTILS_flag_button = true; return; } void initGPIOs() { return; }