File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed
targets/TARGET_STM/TARGET_STM32F4/TARGET_UBLOX_EVK_ODIN_W2/sdk/ublox-odin-w2-drivers Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -110,6 +110,7 @@ extern void cbMAIN_startOS(void);
110
110
/**
111
111
* Get event queue. Used for running a function in the same thread context as the driver.
112
112
* Can not be called before cbMAIN_initOS/cbMAIN_initBt/cbMAIN_initWlan.
113
+ * Use cbMAIN_dispatchEventQueue to trigger the driver to call the queued up functions.
113
114
* @return EventQueue Pointer to the event queue where function calls can be enqueued.
114
115
*/
115
116
extern EventQueue * cbMAIN_getEventQueue (void );
@@ -128,4 +129,11 @@ extern void cbMAIN_driverLock(void);
128
129
*/
129
130
extern void cbMAIN_driverUnlock (void );
130
131
132
+ /**
133
+ * Dispatch event queue. Should be called to trigger calls that have been queued up in the driver context
134
+ *
135
+ * @return void
136
+ */
137
+ extern void cbMAIN_dispatchEventQueue (void );
138
+
131
139
#endif /*_CB_MAIN_H_*/
You can’t perform that action at this time.
0 commit comments