File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed
Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -44,6 +44,10 @@ typedef void (* TaskFunction_t)( void * );
4444
4545#define pdFALSE ( ( BaseType_t ) 0 )
4646#define pdTRUE ( ( BaseType_t ) 1 )
47+ #define pdFALSE_SIGNED ( ( BaseType_t ) 0 )
48+ #define pdTRUE_SIGNED ( ( BaseType_t ) 1 )
49+ #define pdFALSE_UNSIGNED ( ( UBaseType_t ) 0 )
50+ #define pdTRUE_UNSIGNED ( ( UBaseType_t ) 1 )
4751
4852#define pdPASS ( pdTRUE )
4953#define pdFAIL ( pdFALSE )
@@ -100,6 +104,7 @@ typedef void (* TaskFunction_t)( void * );
100104#define pdFREERTOS_ERRNO_ENOTEMPTY 90 /* Directory not empty */
101105#define pdFREERTOS_ERRNO_ENAMETOOLONG 91 /* File or path name too long */
102106#define pdFREERTOS_ERRNO_EOPNOTSUPP 95 /* Operation not supported on transport endpoint */
107+ #define pdFREERTOS_ERRNO_EAFNOSUPPORT 97 /* Address family not supported by protocol */
103108#define pdFREERTOS_ERRNO_ENOBUFS 105 /* No buffer space available */
104109#define pdFREERTOS_ERRNO_ENOPROTOOPT 109 /* Protocol not available */
105110#define pdFREERTOS_ERRNO_EADDRINUSE 112 /* Address already in use */
You can’t perform that action at this time.
0 commit comments