earlephilhower on master
Allow users to inherit and over… (compare)
Exception (3):
epc1=0x4000deed epc2=0x00000000 epc3=0x00000000 excvaddr=0x40000014 depc=0x00000000
ctx: cont
sp: 3fff5a10 end: 3fff5cd0 offset: 01a0
stack>>>
3fff5bb0: 4010623e 3fffb2ac 000000ff 00000000
3fff5bc0: 40235be9 3fffb36c 00000484 00000000
3fff5bd0: 3fffb42c 3fff5c81 00000001 40235d3c
3fff5be0: 3fff5c20 3fffb36c 00000009 3fff4ca0
3fff5bf0: 3fff5c40 3ffffed0 3fffb36c 00000009
3fff5c00: 40235d78 3fff5d18 00000000 40214c65
3fff5c10: 402088ec 3fff40dc 3fff4cb0 3fff5d18
3fff5c20: 00000000 00000000 40211828 39ff4cb0
3fff5c30: 3fff4000 00000001 3ffe903d 40214a60
3fff5c40: 00000000 00000006 3ffe8eee 3fff4ca0
3fff5c50: 00000009 00000001 3fff5d18 40211fc9
3fff5c60: 3ffe903c 00000009 3fff5d18 40214cc3
3fff5c70: 3ffe8ee8 3fff38fc 3fff5d18 40214b38
3fff5c80: 00000009 3fff38dc 3fff5d18 40214cf5
3fff5c90: 3fff385c 3fff38dc 3fff5d18 402079d3
3fff5ca0: 00000000 00000000 00000001 3fff4ca0
3fff5cb0: 3fffdad0 00000000 3fff4c98 40211874
3fff5cc0: feefeffe feefeffe 3fff4cb0 40100958
<<<stack<<<
ets Jan 8 2013,rst cause:1, boot mode:(3,6)
load 0x4010f000, len 1264, room 16
tail 0
chksum 0x42
csum 0x42
~ld
What is the best practice / simplest way of enabling and disabling debug printouts? Currently I use
#define DEBUG_PRINT(x) Serial.print(x)
#define DEBUG_PRINTLN(x) Serial.println(x)
#define DEBUG_PRINTF(x, ...) Serial.printf(x, ...)
and then just empty-define them when I want to turn off debug printouts...
In file included from D:\bitbucket\exxact\Firmware\EDWD\EDWD.ino:11:0:
C:\Users\englund\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\2.2.0\cores\esp8266/Arduino.h:42:14: error: expected identifier before numeric constant
#define HIGH 0x1
^