- Timestamp:
- 08/04/08 20:51:26 (5 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
firmware/trunk/core/lwip/contrib/port/FreeRTOS/AT91SAM7X/arch/sys_arch.h
r688 r778 40 40 #define SYS_MBOX_NULL (xQueueHandle)0 41 41 #define SYS_SEM_NULL (xSemaphoreHandle)0 42 // MakingThings - addition for lwip 1.3.043 // FIXME - more robust implementation...44 #define sys_arch_mbox_tryfetch(mbox,msg) sys_arch_mbox_fetch(mbox,msg,1)45 42 46 43 typedef xSemaphoreHandle sys_sem_t; … … 48 45 typedef xTaskHandle sys_thread_t; 49 46 47 /* Message queue constants. */ 48 #define archMESG_QUEUE_LENGTH ( 6 ) 49 #define archPOST_BLOCK_TIME_MS ( ( unsigned portLONG ) 10000 ) 50 50 51 #endif /* __SYS_RTXC_H__ */ 51 52
