From d82345785dde11d2b57b8c2cde3806e041ad16de Mon Sep 17 00:00:00 2001 From: Josh Stewart Date: Wed, 21 Jun 2017 13:09:57 +1000 Subject: [PATCH] Add missing file from last commit --- .travis.yml | 4 ++++ speeduino/decoders.h | 1 - 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 7fff5cb7..1a71e771 100644 --- a/.travis.yml +++ b/.travis.yml @@ -61,6 +61,10 @@ script: - cd noisymime/speeduino - platformio run - cd .. + +notifications: + slack: speeduino:Y8Bhhviu4r7HFF3abMYDnH3p + # - speeduino/misra/check_misra.sh diff --git a/speeduino/decoders.h b/speeduino/decoders.h index cfbcf476..91fda7e0 100644 --- a/speeduino/decoders.h +++ b/speeduino/decoders.h @@ -57,7 +57,6 @@ volatile unsigned long triggerFilterTime; // The shortest time (in uS) that puls unsigned long triggerSecFilterTime; // The shortest time (in uS) that pulses will be accepted (Used for debounce filtering) for the secondary input unsigned int triggerSecFilterTime_duration; // The shortest valid time (in uS) pulse DURATION volatile int triggerToothAngle; //The number of crank degrees that elapse per tooth -unsigned long revolutionTime; //The time in uS that one revolution would take at current speed (The time tooth 1 was last seen, minus the time it was seen prior to that) bool secondDerivEnabled; //The use of the 2nd derivative calculation is limited to certain decoders. This is set to either true or false in each decoders setup routine bool decoderIsSequential; //Whether or not the decoder supports sequential operation byte checkSyncToothCount; //How many teeth must've been seen on this revolution before we try to confirm sync (Useful for missing tooth type decoders)