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.
Dependencies: mbed DISCO_L475VG_IOT01A_wifi TextLCD USBHost
Diff: src/config.cpp
- Revision:
- 6:9d975a9d2728
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/config.cpp Thu Aug 15 19:33:04 2019 +0000 @@ -0,0 +1,21 @@ +#include "config.h" + +std::string pause{"default"}; +std::string cycles{"default"}; + + +void setPause(std::string p){ + pause = p; +} + +void setCycles(std::string c){ + cycles = c; +} + +std::string getPause(void){ + return pause; +} + +std::string getCycles(void){ + return cycles; +} \ No newline at end of file