Trond Enger / d7a_1x

Fork of d7a_1x by WizziLab

Revision:
84:e5388f1b8ed9
Parent:
83:f4054d0b29ba
--- a/src/d7a_sys.cpp	Thu Jan 05 12:59:13 2017 +0000
+++ b/src/d7a_sys.cpp	Fri Jan 06 15:33:26 2017 +0000
@@ -6,6 +6,7 @@
 #include "d7a_fs.h"
 #include "d7a_sys.h"
 #include "d7a.h"
+#include "d7a_typedefs.h"
 
 #if 0
     #define SYS_DPRINT(...)         DPRINT(__VA_ARGS__)
@@ -17,9 +18,9 @@
     #define SYS_FPRINT(...);
 #endif
 
-static Thread                       g_sys_thread(osPriorityHigh, 512, NULL);
-static Queue<d7a_com_rx_msg_t, 8>   g_sys_pkt_queue;
-static Queue<bool, 1>               g_sys_wait_pong;
+static OS_Thread                         g_sys_thread(osPriorityHigh, 512, NULL);
+static OS_Queue<d7a_com_rx_msg_t, 8>   g_sys_pkt_queue;
+static OS_Queue<bool, 1>               g_sys_wait_pong;
 
 void d7a_sys_thread();