mirror of
https://github.com/silenty4ng/uv-k5-firmware-chinese-lts
synced 2025-02-19 08:28:09 +00:00
63 lines
1.8 KiB
C
63 lines
1.8 KiB
C
![]() |
#include "cmsis_os2.h" // CMSIS RTOS header file
|
||
|
|
||
|
/*----------------------------------------------------------------------------
|
||
|
* Memory Pool creation & usage
|
||
|
*---------------------------------------------------------------------------*/
|
||
|
|
||
|
#define MEMPOOL_OBJECTS 16 // number of Memory Pool Objects
|
||
|
|
||
|
typedef struct { // object data type
|
||
|
uint8_t Buf[32];
|
||
|
uint8_t Idx;
|
||
|
} MEM_BLOCK_t;
|
||
|
|
||
|
osMemoryPoolId_t mpid_MemPool; // memory pool id
|
||
|
|
||
|
osThreadId_t tid_Thread_MemPool; // thread id
|
||
|
|
||
|
void Thread_MemPool (void *argument); // thread function
|
||
|
|
||
|
int Init_MemPool (void) {
|
||
|
|
||
|
mpid_MemPool = osMemoryPoolNew(MEMPOOL_OBJECTS, sizeof(MEM_BLOCK_t), NULL);
|
||
|
if (mpid_MemPool == NULL) {
|
||
|
; // MemPool object not created, handle failure
|
||
|
}
|
||
|
|
||
|
tid_Thread_MemPool = osThreadNew(Thread_MemPool, NULL, NULL);
|
||
|
if (tid_Thread_MemPool == NULL) {
|
||
|
return(-1);
|
||
|
}
|
||
|
|
||
|
return(0);
|
||
|
}
|
||
|
|
||
|
void Thread_MemPool (void *argument) {
|
||
|
MEM_BLOCK_t *pMem;
|
||
|
osStatus_t status;
|
||
|
|
||
|
while (1) {
|
||
|
; // Insert thread code here...
|
||
|
|
||
|
pMem = (MEM_BLOCK_t *)osMemoryPoolAlloc(mpid_MemPool, 0U); // get Mem Block
|
||
|
if (pMem != NULL) { // Mem Block was available
|
||
|
pMem->Buf[0] = 0x55U; // do some work...
|
||
|
pMem->Idx = 0U;
|
||
|
|
||
|
status = osMemoryPoolFree(mpid_MemPool, pMem); // free mem block
|
||
|
switch (status) {
|
||
|
case osOK:
|
||
|
break;
|
||
|
case osErrorParameter:
|
||
|
break;
|
||
|
case osErrorNoMemory:
|
||
|
break;
|
||
|
default:
|
||
|
break;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
osThreadYield(); // suspend thread
|
||
|
}
|
||
|
}
|