Remove some of the lwip asserts to allow use with 64-bit alignment.

This commit is contained in:
Richard Barry 2014-06-10 16:29:32 +00:00
parent 7fa64efeeb
commit f1a0534a56
2 changed files with 4 additions and 2 deletions

View file

@ -46,6 +46,8 @@ typedef SemaphoreHandle_t sys_mutex_t;
typedef QueueHandle_t sys_mbox_t;
typedef TaskHandle_t sys_thread_t;
typedef unsigned long sys_prot_t;
#define sys_mbox_valid( x ) ( ( ( *x ) == NULL) ? pdFALSE : pdTRUE )
#define sys_mbox_set_invalid( x ) ( ( *x ) = NULL )
#define sys_sem_valid( x ) ( ( ( *x ) == NULL) ? pdFALSE : pdTRUE )