LED_D_OFF();
// threshold either high or low values 128 = center 0. if trigger = 178
if ((trigger_threshold > 0) && (sample < (trigger_threshold+128)) && (sample > (128-trigger_threshold))) { //
- if (cancel_after > 0) cancel_counter++;
- if (cancel_after == cancel_counter) break;
+ if (cancel_after > 0) {
+ cancel_counter++;
+ if (cancel_after == cancel_counter) break;
+ }
continue;
}
trigger_threshold = 0;
}
/**
-* acquisition of Cotag LF signal. Similart to other LF, since the Cotag has such long datarate RF/384
+* acquisition of Cotag LF signal. Similar to other LF, since the Cotag has such long datarate RF/384
* and is Manchester?, we directly gather the manchester data into bigbuff
**/
#define COTAG_T1 384