aboutsummaryrefslogtreecommitdiff
path: root/src/survive_data.c
diff options
context:
space:
mode:
authorcnlohr <lohr85@gmail.com>2017-02-13 01:16:05 -0500
committercnlohr <lohr85@gmail.com>2017-02-13 01:16:05 -0500
commitff7167fb8afff6633db422290864e5da302d9afb (patch)
treeeb3b679912d9d2afaf3238d91bd3df14268a9b7c /src/survive_data.c
parent1ffadeda2fac023741c9a828714bb4ac29fcd815 (diff)
downloadlibsurvive-ff7167fb8afff6633db422290864e5da302d9afb.tar.gz
libsurvive-ff7167fb8afff6633db422290864e5da302d9afb.tar.bz2
Update disambiguator. I think I got it right this time, finally. Also, seems to output OOTX data pretty good.
Diffstat (limited to 'src/survive_data.c')
-rw-r--r--src/survive_data.c181
1 files changed, 101 insertions, 80 deletions
diff --git a/src/survive_data.c b/src/survive_data.c
index 808c891..afda235 100644
--- a/src/survive_data.c
+++ b/src/survive_data.c
@@ -11,7 +11,6 @@
//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 <stdint.h>
#include <string.h>
@@ -32,125 +31,148 @@ struct LightcapElement
//This is the disambiguator function, for taking light timing and figuring out place-in-sweep for a given photodiode.
static void handle_lightcap( struct SurviveObject * so, struct LightcapElement * le )
{
- struct SurviveContext * ct = so->ctx;
- int32_t deltat = (uint32_t)le->timestamp - (uint32_t)so->last_master_time;
+ struct SurviveContext * ctx = so->ctx;
+ //int32_t deltat = (uint32_t)le->timestamp - (uint32_t)so->last_master_time;
// printf( "%s %d %d %d %d %d\n", so->codename, le->sensor_id, le->type, le->length, le->timestamp, le->timestamp-so->tsl );
so->tsl = le->timestamp;
if( le->length < 20 ) return;
-#ifndef USE_OLD_DISAMBIGUATOR
- int32_t offset = le->timestamp - so->d->last;
- switch( disambiguator_step( so->d, le->timestamp, le->length ) ) {
- default:
- case P_SLAVE:
- // this is only interesting for the OOTX data
- break;
- case P_UNKNOWN:
- // not currently locked
- break;
- case P_MASTER:
- 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->code & 1) return;
- ct->lightproc( so, le->sensor_id, so->d->code >> 1, offset, le->timestamp, le->length );
- break;
+
+ //The sync pulse finder is taking Charles's old disambiguator code and mixing it with a more linear
+ //version of Julian Picht's disambiguator, available in 488c5e9. Removed afterwards into this
+ //unified driver.
+
+
+ int ssn = so->sync_set_number;
+ if( ssn < 0 ) ssn = 0;
+ int last_sync_time = so->last_time [ssn];
+ int last_sync_length = so->last_length[ssn];
+ int32_t delta = le->timestamp - last_sync_time; //Handle time wrapping (be sure to be int32)
+
+ if( delta < -500000 || delta > 500000 )
+ {
+ //Reset pulse, etc.
+ so->sync_set_number = -1;
+ delta = 500000;
}
-#else
+
+
if( le->length > 2200 ) //Pulse longer indicates a sync pulse.
{
- int32_t deltat = (uint32_t)le->timestamp - (uint32_t)so->last_master_time;
- // if( so->codename[0] == 'W' )
+ int is_new_pulse = delta > 1500 + last_sync_length;
+
+ so->did_handle_ootx = 0;
- if( deltat > 2000 )
+ if( is_new_pulse )
{
- //YUGH!! This is really ugly, should refactor.
+ int is_master_sync_pulse = delta > 40000;
- if( so->is_on_slave )
+ if( is_master_sync_pulse )
{
- //Last was a slave. If new pulse, switch back to master mode.
- if( le->timestamp - so->last_slave_time > 1500 + so->last_slave_length )
- {
- so->is_on_slave = 0;
- so->last_master_time = le->timestamp;
- so->last_master_length = le->length;
- ct->lightproc( so, le->sensor_id, -1, 0, le->timestamp, deltat );
- }
+ ssn = so->sync_set_number = 0;
+ so->last_time[ssn] = le->timestamp;
+ so->last_length[ssn] = le->length;
+ }
+ else if( so->sync_set_number == -1 )
+ {
+ //Do nothing.
}
else
{
- //See if this is a unique pulse, or another one in the same set we need to look at.
- if( le->timestamp - so->last_master_time > 1500 + so->last_master_length )
+ ssn = ++so->sync_set_number;
+ if( so->sync_set_number > 1 )
{
- // check if it is a slave pulse
- if (le->timestamp - so->last_master_time < 70000) {
- so->last_slave_time = le->timestamp;
- so->last_slave_length = le->length;
- so->is_on_slave = 1;
- return;
- }
-
- so->is_on_slave = 0;
- so->last_master_time = le->timestamp;
- so->last_master_length = le->length;
- ct->lightproc( so, le->sensor_id, -1, 0, le->timestamp, deltat );
- deltat = 0;
+ SV_INFO( "Warning. Received an extra, unassociated sync pulse." );
+ ssn = so->sync_set_number = -1;
+ }
+ else
+ {
+ so->last_time[ssn] = le->timestamp;
+ so->last_length[ssn] = le->length;
}
- }
- }
-
- //Find longest pulse-length from device in our window and use that one.
- if( so->is_on_slave )
- {
-// printf("%10u %10u %6d %6d\n", so->last_master_time, le->timestamp, (le->length - 2750)/500, (int32_t)le->timestamp - (int32_t)so->last_master_time);
-
- if( le->length > so->last_slave_length )
- {
- so->last_slave_time = le->timestamp;
- so->last_slave_length = le->length;
}
}
else
{
- if( le->length > so->last_master_length )
+ //Find the longest pulse.
+ if( le->length > last_sync_length )
{
- so->last_master_time = le->timestamp;
- so->last_master_length = le->length;
+ if( so->last_time[ssn] > le->timestamp )
+ {
+ so->last_time[ssn] = le->timestamp;
+ so->last_length[ssn] = le->length;
+ }
}
}
}
-
//See if this is a valid actual pulse.
- else if( le->length < 1800 && le->length > 40 && ( le->timestamp - so->last_master_time < 380000 ) )
+ else if( le->length < 1800 && le->length > 40 && delta > 30000 && ssn >= 0 )
{
- int32_t dl = so->last_master_time;
- int32_t tpco = so->last_master_length;
+ int32_t dl = so->last_time[0];
+ int32_t tpco = so->last_length[0];
//Adding length
//Long pulse-code from IR flood.
//Make sure it fits nicely into a divisible-by-500 time.
- int32_t acode = (tpco+125+50)/250; //+10, seems ike that's
- if( acode & 1 ) return;
+ int32_t acode_array[2] =
+ {
+ (so->last_length[0]+125+50)/250,
+ (so->last_length[1]+125+50)/250,
+ };
- acode >>= 1;
- acode -= 6;
+ //XXX: TODO: Capture error count here.
+ if( acode_array[0] & 1 ) return;
+ if( acode_array[1] & 1 ) return;
- if (acode > 3) {
- return;
- dl = so->last_slave_time;
- tpco = so->last_slave_length;
+ acode_array[0] = (acode_array[0]>>1) - 6;
+ acode_array[1] = (acode_array[1]>>1) - 6;
+
+ int acode = acode_array[0];
+
+ if( !so->did_handle_ootx )
+ {
+ int32_t delta1 = so->last_time[0] - so->recent_sync_time;
+ int32_t delta2 = so->last_time[1] - so->last_time[0];
+
+ ctx->lightproc( so, -1, acode_array[0], delta1, so->last_time[0], so->last_length[0] );
+ ctx->lightproc( so, -2, acode_array[1], delta2, so->last_time[1], so->last_length[1] );
+ so->recent_sync_time = so->last_time[1];
+
+ //Throw out everything if our sync pulses look like they're bad.
+ if( delta1 < 375000 || delta1 > 385000 )
+ {
+ //XXX: TODO: Count faults.
+ so->sync_set_number = -1;
+ return;
+ }
+
+ if( delta2 < 15000 || delta2 > 25000 )
+ {
+ //XXX: TODO: Count faults.
+ so->sync_set_number = -1;
+ return;
+ }
+
+ so->did_handle_ootx = 1;
}
- //printf( "%s / %d %d ++ %d %d\n", so->codename, dl, tpco, offset_from, acode );
+
+ if (acode > 3) {
+ if( ssn == 0 )
+ {
+ SV_INFO( "Warning: got a slave marker but only got a master sync." );
+ }
+ dl = so->last_time[1];
+ tpco = so->last_length[1];
+ }
int32_t offset_from = le->timestamp - dl + le->length/2;
//Make sure pulse is in valid window
if( offset_from < 380000 && offset_from > 70000 )
{
- ct->lightproc( so, le->sensor_id, acode, offset_from, le->timestamp, le->length );
+ ctx->lightproc( so, le->sensor_id, acode, offset_from, le->timestamp, le->length );
}
}
else
@@ -158,7 +180,6 @@ static void handle_lightcap( struct SurviveObject * so, struct LightcapElement *
//printf( "FAIL %d %d - %d = %d\n", le->length, so->last_photo_time, le->timestamp, so->last_photo_time - le->timestamp );
//Runt pulse, or no sync pulses available.
}
-#endif
}