blynk & neopixelring & w7500
Fork of WIZwiki-7500_Blynk by
Diff: utility/BlynkDebug.cpp
- Revision:
- 0:58b20b438383
- Child:
- 9:7369ec77a3ea
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/utility/BlynkDebug.cpp Sat May 07 08:02:50 2016 +0000 @@ -0,0 +1,27 @@ +/** + * @file BlynkDebug.cpp + * @author Volodymyr Shymanskyy + * @license This project is released under the MIT License (MIT) + * @copyright Copyright (c) 2015 Volodymyr Shymanskyy + * @date Jan 2015 + * @brief Debug utilities for Arduino + */ + +#include <Blynk/BlynkDebug.h> +#include "mbed.h" + +size_t BlynkFreeRam() +{ + return 0; +} + +void BlynkReset() +{ + for(;;); // To make compiler happy +} + +void BlynkFatal() +{ + wait(10000L); + BlynkReset(); +}