aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorcnlohr <lohr85@gmail.com>2016-12-26 18:26:48 -0500
committercnlohr <lohr85@gmail.com>2016-12-26 18:26:48 -0500
commit41638eaad897d5a0eee10c4cba6a3d6ff25ec7e9 (patch)
tree6fe9db797defd774195b441c780878b9c18f2e8a /include
parentb37a166a232178f929a20fd9a17ffb9cc1a98aa4 (diff)
downloadlibsurvive-41638eaad897d5a0eee10c4cba6a3d6ff25ec7e9.tar.gz
libsurvive-41638eaad897d5a0eee10c4cba6a3d6ff25ec7e9.tar.bz2
forgot header
Diffstat (limited to 'include')
-rw-r--r--include/survive.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/include/survive.h b/include/survive.h
index abc6917..cf2ab81 100644
--- a/include/survive.h
+++ b/include/survive.h
@@ -32,15 +32,16 @@ struct SurviveObject
//Flood info, for calculating which laser is currently sweeping.
int8_t oldcode;
#ifdef USE_OLD_DISAMBIGUATOR
- int16_t total_photos;
int32_t last_photo_time;
- int32_t total_photo_time;
- int32_t total_pulsecode_time;
+ int32_t last_photo_length;
#else
struct disambiguator * d;
#endif
uint32_t last_lighttime; //May be a 24- or 32- bit number depending on what device.
+
+ //Debug
+ int tsl;
};
typedef void (*text_feedback_fnptr)( struct SurviveContext * ctx, const char * fault );