File tree Expand file tree Collapse file tree 2 files changed +14
-2
lines changed Expand file tree Collapse file tree 2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -36,10 +36,21 @@ install:
36
36
jobs :
37
37
include :
38
38
- stage : build
39
- name : " Base Sketch"
39
+ name : " Empty Sketch (NRF24 radio) "
40
40
script :
41
41
- eval $RUN
42
- - name : " All features ON"
42
+ - name : " Empty Sketch (RFM69 radio)"
43
+ script :
44
+ - sed -r -i 's/(#define MY_RADIO_NRF24)/\/\/\1/' $PWD/$SKETCH
45
+ - sed -r -i 's/\/\/(#define MY_RADIO_RFM69)/\1/' $PWD/$SKETCH
46
+ - sed -r -i 's/\/\/(#define MY_IS_RFM69HW)/\1/' $PWD/$SKETCH
47
+ - sed -r -i 's/\/\/(#define MY_RFM69_NEW_DRIVER)/\1/' $PWD/$SKETCH
48
+ - eval $RUN
49
+ - name : " Gateway Serial"
50
+ script :
51
+ - sed -r -i 's/\/\/(#define MY_GATEWAY_SERIAL)/\1/' $PWD/$SKETCH
52
+ - eval $RUN
53
+ - name : " Features"
43
54
script :
44
55
- arduino --install-library "DS3232RTC,Time"
45
56
- sed -r -i s/OFF/ON/g $PWD/$SKETCH
Original file line number Diff line number Diff line change 263
263
// include third party libraries for enabled features
264
264
#ifdef MY_GATEWAY_SERIAL
265
265
#define FEATURE_SLEEP OFF
266
+ #define FEATURE_DEBUG OFF
266
267
#endif
267
268
#if FEATURE_TIME == ON
268
269
#include < TimeLib.h>
You can’t perform that action at this time.
0 commit comments