File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
libraries/BLEAdafruitService/src/services Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -41,9 +41,9 @@ class BLEAdafruitQuaternion : public BLEAdafruitSensor
41
41
void setCalibration (Adafruit_Sensor_Calibration* calib);
42
42
43
43
protected:
44
- virtual void _update_timer (int32_t ms);
45
- virtual void _measure_handler (void );
46
- virtual void _notify_cb (uint16_t conn_hdl, uint16_t value);
44
+ void _update_timer (int32_t ms);
45
+ void _measure_handler (void );
46
+ void _notify_cb (uint16_t conn_hdl, uint16_t value);
47
47
48
48
void _fitler_update (void );
49
49
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ def build_examples(variant):
52
52
sketchdir = os .path .dirname (sketch )
53
53
if os .path .exists (sketchdir + '/.all.test.skip' ) or os .path .exists (sketchdir + '/.' + variant + '.test.skip' ):
54
54
success = "\033 [33mskipped\033 [0m "
55
- elif glob .glob (sketchdir + "/.*.test.only" ) and not os .path .exists (sketchdir + '/.build.' + variant ):
55
+ elif glob .glob (sketchdir + "/.*.test.only" ) and not os .path .exists (sketchdir + '/.build.' + variant + '.test.only' ):
56
56
success = "\033 [33mskipped\033 [0m "
57
57
else :
58
58
# TODO - preferably, would have STDERR show up in **both** STDOUT and STDERR.
You can’t perform that action at this time.
0 commit comments