Definition in file sys_arch.h.
#include "FreeRTOS.h"
#include "task.h"
#include "queue.h"
#include "semphr.h"
Go to the source code of this file.
Defines | |
| #define | SYS_MBOX_NULL (xQueueHandle)0 |
| #define | SYS_SEM_NULL (xSemaphoreHandle)0 |
Typedefs | |
| typedef xQueueHandle | sys_mbox_t |
| typedef unsigned long int | sys_prot_t |
| typedef xSemaphoreHandle | sys_sem_t |
| typedef xTaskHandle | sys_thread_t |
Functions | |
| sys_prot_t | sys_arch_protect (void) |
| void | sys_arch_unprotect (sys_prot_t pval) |
| #define SYS_MBOX_NULL (xQueueHandle)0 |
| #define SYS_SEM_NULL (xSemaphoreHandle)0 |
| typedef xQueueHandle sys_mbox_t |
Definition at line 56 of file sys_arch.h.
| typedef unsigned long int sys_prot_t |
Definition at line 62 of file sys_arch.h.
| typedef xSemaphoreHandle sys_sem_t |
Definition at line 55 of file sys_arch.h.
| typedef xTaskHandle sys_thread_t |
Definition at line 57 of file sys_arch.h.
| sys_prot_t sys_arch_protect | ( | void | ) |
Definition at line 416 of file sys_arch.c.
References vPortEnterCritical().
00417 { 00418 vPortEnterCritical(); 00419 return 1; // Not used 00420 }
| void sys_arch_unprotect | ( | sys_prot_t | pval | ) |
Definition at line 425 of file sys_arch.c.
References vPortExitCritical().
00426 { 00427 vPortExitCritical(); 00428 }
1.5.5