aboutsummaryrefslogtreecommitdiff
path: root/data_recorder.c
diff options
context:
space:
mode:
Diffstat (limited to 'data_recorder.c')
-rw-r--r--data_recorder.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/data_recorder.c b/data_recorder.c
index ced82c4..951f234 100644
--- a/data_recorder.c
+++ b/data_recorder.c
@@ -17,11 +17,11 @@ void HandleKey( int keycode, int bDown )
if( keycode == 'O' || keycode == 'o' )
{
- survive_usb_send_magic(ctx,1);
+ survive_send_magic(ctx,1,0,0);
}
if( keycode == 'F' || keycode == 'f' )
{
- survive_usb_send_magic(ctx,0);
+ survive_send_magic(ctx,0,0,0);
}
}
@@ -81,7 +81,7 @@ void my_imu_process( struct SurviveObject * so, int16_t * accelgyro, uint32_t ti
{
survive_default_imu_process( so, accelgyro, timecode, id );
-return;
+//return;
//if( so->codename[0] == 'H' )
if( 1 )
{
@@ -132,7 +132,7 @@ void * GuiThread( void * v )
int main()
{
- ctx = survive_init( );
+ ctx = survive_init( 0 );
survive_install_light_fn( ctx, my_light_process );
survive_install_imu_fn( ctx, my_imu_process );