|
|
#define | WICED_FALSE 0 |
| | Wiced false.
|
| |
|
#define | WICED_TRUE 1 |
| | Wiced true.
|
| |
|
#define | FALSE 0 |
| | false
|
| |
|
#define | TRUE 1 |
| | true
|
| |
|
#define | WICED_BT_STRUCT_PACKED struct |
| | packed structure
|
| |
|
#define | WICED_BT_UNION_PACKED union |
| | packed union
|
| |
|
#define | WICED_SUPPRESS_WARNINGS(m) if((m)){;} |
| | Surpress Warnings.
|
| |
|
#define | UNUSED_VARIABLE(x) /*@-noeffect@*/ ( (void)(x) ) /*@+noeffect@*/ |
| | Unused Variable.
|
| |
|
#define | WICED_MEMCPY(a, b, c) memcpy((void*)(a), (const void*)(b), c) |
| | Wiced Memory copy.
|
| |
|
#define | WICED_MEMSET(a, b, c) memset((void*)(a), b, c) |
| | Wiced Memory set.
|
| |
|
#define | WICED_MEMMOVE(a, b, c) memmove((void*)(a), (const void*)(b), c) |
| | Wiced Memory move.
|
| |
|
#define | WICED_MEMCMP(a, b, c) memcmp((void*)(a), (const void*)(b), c) |
| | Wiced Memory compare.
|
| |