We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fba7b7f commit 233b92cCopy full SHA for 233b92c
targets/TARGET_STM/TARGET_STM32F4/TARGET_UBLOX_EVK_ODIN_W2/sdk/ublox-odin-w2-drivers/cb_status.h
@@ -26,7 +26,9 @@
26
*=========================================================================*/
27
28
#define OK(status) (status == cbSTATUS_OK)
29
-
+#define BUSY(status) (status == cbSTATUS_BUSY)
30
+#define ERR(status) (status == cbSTATUS_ERROR)
31
+
32
/*===========================================================================
33
* TYPES
34
@@ -36,6 +38,7 @@
36
38
cbSTATUS_OK,
37
39
cbSTATUS_ERROR,
40
cbSTATUS_BUSY,
41
+ cbSTATUS_RECEIVE_DATA_MODE,
42
cbSTATUS_TIMEOUT
43
44
} cbRTSL_Status;
0 commit comments