init
Dependencies: aconno_I2C Lis2dh12 WatchdogTimer
Diff: main.h
- Revision:
- 6:388d3c7efdd9
- Parent:
- 5:8f8951127724
- Child:
- 7:e9a19750700d
--- a/main.h Mon Nov 12 10:56:23 2018 +0000
+++ b/main.h Wed Nov 14 16:08:28 2018 +0000
@@ -21,7 +21,7 @@
#include "mbed.h"
#include "WatchdogTimer.h"
#include "ble/BLE.h"
-//#include "nvstore.h"
+#include "nvstore.h"
//#include "ATCmdParser.h"
//#include "UARTSerial.h"
@@ -72,7 +72,7 @@
#define lowByte(w) ((uint8_t) ((w) & 0xff))
#define highByte(w) ((uint8_t) ((w) >> 8))
-#define NEED_CONSOLE_OUTPUT 0 /* Set this if you need debug messages on the console; * it will have an impact on code-size and power consumption. */
+#define NEED_CONSOLE_OUTPUT 1 /* Set this if you need debug messages on the console; * it will have an impact on code-size and power consumption. */
#if NEED_CONSOLE_OUTPUT
#define DEBUG(...) { uart.printf(__VA_ARGS__); }
#else