From: baobrien Date: Tue, 3 Oct 2017 08:58:45 +0000 (+0000) Subject: Temporary fix for tdma compilitaion error X-Git-Url: http://git.whiteaudio.com/gitweb/?a=commitdiff_plain;h=41a04b310c7da2ddc3ae1d1ae16014330de7be08;p=freetel-svn-tracking.git Temporary fix for tdma compilitaion error git-svn-id: https://svn.code.sf.net/p/freetel/code@3379 01035d8c-6547-0410-b346-abe4f91aad63 --- diff --git a/codec2-dev/src/tdma.c b/codec2-dev/src/tdma.c index bb9376aa..59dae394 100644 --- a/codec2-dev/src/tdma.c +++ b/codec2-dev/src/tdma.c @@ -338,8 +338,9 @@ void tdma_deframe_cbcall(u8 demod_bits[], u32 slot_i, tdma_t * tdma, slot_t * sl } /* Right now we're not actually deframing the bits */ + /* TODO: actually extract UW type */ if(tdma->rx_callback != NULL){ - tdma->rx_callback(frame_bits,slot_i,slot,tdma,tdma->rx_cb_data); + tdma->rx_callback(frame_bits,slot_i,slot,tdma,0,tdma->rx_cb_data); } }