From a95737952d4fbb658b6de3bec312109b56caf6a6 Mon Sep 17 00:00:00 2001 From: Julian Picht Date: Tue, 20 Dec 2016 21:32:44 +0100 Subject: hacked in my disambiguator --- src/survive_data.c | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'src/survive_data.c') diff --git a/src/survive_data.c b/src/survive_data.c index 660c3e1..fc86d9f 100644 --- a/src/survive_data.c +++ b/src/survive_data.c @@ -11,6 +11,7 @@ //All MIT/x11 Licensed Code in this file may be relicensed freely under the GPL or LGPL licenses. #include "survive_internal.h" +#include "disambiguator.h" #include #include @@ -41,6 +42,21 @@ static void handle_lightcap( struct SurviveObject * so, struct LightcapElement * if( le->type != 0xfe || le->length < 50 ) return; //le->timestamp += (le->length/2); + int32_t offset = le->timestamp - so->d.last; + switch(disambiguator_step(&(so->d), le->timestamp, le->length)) { + default: + case P_UNKNOWN: + // not currently locked + case P_SYNC: + ct->lightproc( so, le->sensor_id, -1, 0, le->timestamp, offset ); + so->d.code = ((le->length+125)/250) - 12; + break; + case P_SWEEP: + if (so->d.gcode & 1) return; + ct->lightproc( so, le->sensor_id, so->d.code >> 1, offset, le->timestamp, le->length ); + break; + } +#if 0 if( le->length > 2100 ) //Pulse longer indicates a sync pulse. { int32_t deltat = (uint32_t)le->timestamp - (uint32_t)so->last_photo_time; @@ -85,6 +101,7 @@ static void handle_lightcap( struct SurviveObject * so, struct LightcapElement * { //Runt pulse. } +#endif } -- cgit v1.2.3