48#define portFLOAT float
49#define portDOUBLE double
51#define portSHORT short
52#define portSTACK_TYPE uint32_t
53#define portBASE_TYPE long
55typedef portSTACK_TYPE StackType_t;
56typedef long BaseType_t;
57typedef unsigned long UBaseType_t;
59#if (configUSE_16_BIT_TICKS == 1)
60typedef uint16_t TickType_t;
61#define portMAX_DELAY (TickType_t)0xffff
63typedef uint32_t TickType_t;
64#define portMAX_DELAY (TickType_t)0xffffffffUL
68#define portTICK_TYPE_IS_ATOMIC 1
73#define portSTACK_GROWTH (-1)
74#define portTICK_PERIOD_MS ((TickType_t)1000 / configTICK_RATE_HZ)
75#define portBYTE_ALIGNMENT 8
82 portNVIC_INT_CTRL_REG = portNVIC_PENDSVSET_BIT; \
86 __asm volatile("dsb" ::: "memory"); \
87 __asm volatile("isb"); \
90#define portNVIC_INT_CTRL_REG (*((volatile uint32_t *)0xe000ed04))
91#define portNVIC_PENDSVSET_BIT (1UL << 28UL)
92#define portEND_SWITCHING_ISR(xSwitchRequired) \
93 if (xSwitchRequired != pdFALSE) \
95#define portYIELD_FROM_ISR(x) portEND_SWITCHING_ISR(x)
99extern void vPortEnterCritical(
void);
100extern void vPortExitCritical(
void);
101#define portSET_INTERRUPT_MASK_FROM_ISR() ulPortRaiseBASEPRI()
102#define portCLEAR_INTERRUPT_MASK_FROM_ISR(x) vPortSetBASEPRI(x)
103#define portDISABLE_INTERRUPTS() vPortRaiseBASEPRI()
104#define portENABLE_INTERRUPTS() vPortSetBASEPRI(0)
105#define portENTER_CRITICAL() vPortEnterCritical()
106#define portEXIT_CRITICAL() vPortExitCritical()
113#define portTASK_FUNCTION_PROTO(vFunction, pvParameters) void vFunction(void *pvParameters)
114#define portTASK_FUNCTION(vFunction, pvParameters) void vFunction(void *pvParameters)
118#ifndef portSUPPRESS_TICKS_AND_SLEEP
119extern void vPortSuppressTicksAndSleep(TickType_t xExpectedIdleTime);
120#define portSUPPRESS_TICKS_AND_SLEEP(xExpectedIdleTime) vPortSuppressTicksAndSleep(xExpectedIdleTime)
125#ifndef configUSE_PORT_OPTIMISED_TASK_SELECTION
126#define configUSE_PORT_OPTIMISED_TASK_SELECTION 1
129#if configUSE_PORT_OPTIMISED_TASK_SELECTION == 1
132__attribute__((always_inline))
static inline uint8_t ucPortCountLeadingZeros(uint32_t ulBitmap)
136 __asm
volatile(
"clz %0, %1" :
"=r"(ucReturn) :
"r"(ulBitmap) :
"memory");
141#if (configMAX_PRIORITIES > 32)
142#error configUSE_PORT_OPTIMISED_TASK_SELECTION can only be set to 1 when configMAX_PRIORITIES is less than or equal to 32. It is very rare that a system requires more than 10 to 15 difference priorities as tasks that share a priority will time slice.
146#define portRECORD_READY_PRIORITY(uxPriority, uxReadyPriorities) (uxReadyPriorities) |= (1UL << (uxPriority))
147#define portRESET_READY_PRIORITY(uxPriority, uxReadyPriorities) (uxReadyPriorities) &= ~(1UL << (uxPriority))
151#define portGET_HIGHEST_PRIORITY(uxTopPriority, uxReadyPriorities) \
152 uxTopPriority = (31UL - (uint32_t)ucPortCountLeadingZeros((uxReadyPriorities)))
159void vPortValidateInterruptPriority(
void);
160#define portASSERT_IF_INTERRUPT_PRIORITY_INVALID() vPortValidateInterruptPriority()
166#define portINLINE __inline
168#ifndef portFORCE_INLINE
169#define portFORCE_INLINE inline __attribute__((always_inline))
172portFORCE_INLINE
static BaseType_t xPortIsInsideInterrupt(
void)
174 uint32_t ulCurrentInterrupt;
178 __asm
volatile(
"mrs %0, ipsr" :
"=r"(ulCurrentInterrupt)::
"memory");
180 if (ulCurrentInterrupt == 0) {
191portFORCE_INLINE
static void vPortRaiseBASEPRI(
void)
193 uint32_t ulNewBASEPRI;
195 __asm
volatile(
" mov %0, %1 \n"
196 " msr basepri, %0 \n"
200 :
"i"(configMAX_SYSCALL_INTERRUPT_PRIORITY)
206portFORCE_INLINE
static uint32_t ulPortRaiseBASEPRI(
void)
208 uint32_t ulOriginalBASEPRI, ulNewBASEPRI;
210 __asm
volatile(
" mrs %0, basepri \n"
212 " msr basepri, %1 \n"
215 :
"=r"(ulOriginalBASEPRI),
"=r"(ulNewBASEPRI)
216 :
"i"(configMAX_SYSCALL_INTERRUPT_PRIORITY)
221 return ulOriginalBASEPRI;
225portFORCE_INLINE
static void vPortSetBASEPRI(uint32_t ulNewMaskValue)
227 __asm
volatile(
" msr basepri, %0 " ::
"r"(ulNewMaskValue) :
"memory");