Skip to content

Commit 0fce066

Browse files
authored
Merge branch 'main' into feature/get_static_buffers_util_funcs
2 parents ad48dec + 55658e1 commit 0fce066

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

include/projdefs.h

+5
Original file line numberDiff line numberDiff 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 */

0 commit comments

Comments
 (0)