rt-thread/components/CMSIS/RTOS/cmsis_rtthread.c

381 lines
8.0 KiB
C
Raw Normal View History

2013-01-08 22:40:58 +08:00
#include "cmsis_os.h"
// Kernel Control Public API
/// Start the RTOS Kernel with executing the specified thread
2015-07-04 15:19:30 +08:00
osStatus osKernelStart(void)
2013-01-08 22:40:58 +08:00
{
2015-07-04 15:19:30 +08:00
rt_system_scheduler_start();
2013-01-08 22:40:58 +08:00
2015-07-04 15:19:30 +08:00
return osOK;
2013-01-08 22:40:58 +08:00
}
/// Check if the RTOS kernel is already started
int32_t osKernelRunning(void)
{
2015-07-04 15:19:30 +08:00
return (rt_thread_self() != RT_NULL) ? 1 : 0;
2013-01-08 22:40:58 +08:00
}
// Thread Public API
/// Create a thread and add it to Active Threads and set it to state READY
osThreadId osThreadCreate(osThreadDef_t *thread_def, void *argument)
{
2015-07-04 15:19:30 +08:00
osThreadId thread;
int size;
size = thread_def->stack_size;
if (size == 0)
{
size = 4096;
}
thread = rt_thread_create(thread_def->name, thread_def->entry, argument, size, thread_def->priority, thread_def->tick);
if (thread != RT_NULL)
rt_thread_startup(thread);
2013-01-08 22:40:58 +08:00
2015-07-04 15:19:30 +08:00
return thread;
2013-01-08 22:40:58 +08:00
}
/// Return the thread ID of the current running thread
osThreadId osThreadGetId(void)
{
2015-07-04 15:19:30 +08:00
return rt_thread_self();
2013-01-08 22:40:58 +08:00
}
/// Terminate execution of a thread and remove it from ActiveThreads
osStatus osThreadTerminate(osThreadId thread_id)
{
2015-07-04 15:19:30 +08:00
rt_err_t result;
2013-01-08 22:40:58 +08:00
2015-07-04 15:19:30 +08:00
result = rt_thread_delete(thread_id);
2013-01-08 22:40:58 +08:00
2015-07-04 15:19:30 +08:00
if (result == RT_EOK)
return osOK;
else
return osErrorOS;
2013-01-08 22:40:58 +08:00
}
/// Pass control to next thread that is in state READY
osStatus osThreadYield(void)
{
2015-07-04 15:19:30 +08:00
rt_err_t result;
2013-01-08 22:40:58 +08:00
2015-07-04 15:19:30 +08:00
result = rt_thread_yield();
2013-01-08 22:40:58 +08:00
2015-07-04 15:19:30 +08:00
if (result == RT_EOK)
return osOK;
else
return osErrorOS;
2013-01-08 22:40:58 +08:00
}
/// Change prority of an active thread
osStatus osThreadSetPriority(osThreadId thread_id, osPriority priority)
{
2015-07-04 15:19:30 +08:00
rt_err_t result;
if (thread_id == RT_NULL)
return osErrorOS;
if (priority < osPriorityIdle || priority > osPriorityRealtime)
return osErrorPriority;
2013-01-08 22:40:58 +08:00
2015-07-04 15:19:30 +08:00
result = rt_thread_control(thread_id, RT_THREAD_CTRL_CHANGE_PRIORITY, &priority);
2013-01-08 22:40:58 +08:00
2015-07-04 15:19:30 +08:00
if (result == RT_EOK)
return osOK;
else
return osErrorOS;
2013-01-08 22:40:58 +08:00
}
/// Get current prority of an active thread
osPriority osThreadGetPriority(osThreadId thread_id)
{
2015-07-04 15:19:30 +08:00
if (thread_id == RT_NULL)
return osPriorityError;
2013-01-08 22:40:58 +08:00
2015-07-04 15:19:30 +08:00
if ((osPriority)thread_id->current_priority < osPriorityIdle || (osPriority)thread_id->current_priority > osPriorityRealtime)
return osPriorityError;
return thread_id->current_priority;
2013-01-08 22:40:58 +08:00
}
// Generic Wait API
/// Wait for Timeout (Time Delay)
osStatus osDelay(uint32_t millisec)
{
2015-07-04 15:19:30 +08:00
rt_err_t result;
rt_tick_t ticks;
2013-01-08 22:40:58 +08:00
2015-07-04 15:19:30 +08:00
ticks = rt_tick_from_millisecond(millisec);
result = rt_thread_delay(ticks);
2013-01-08 22:40:58 +08:00
2015-07-04 15:19:30 +08:00
if (result == RT_EOK)
return osOK;
else
return osErrorOS;
2013-01-08 22:40:58 +08:00
}
/// Wait for Signal, Message, Mail, or Timeout
osEvent osWait(uint32_t millisec)
{
2015-07-04 15:19:30 +08:00
rt_err_t result;
rt_tick_t ticks;
2013-01-08 22:40:58 +08:00
2015-07-04 15:19:30 +08:00
ticks = rt_tick_from_millisecond(millisec);
result = rt_thread_delay(ticks);
2013-01-08 22:40:58 +08:00
/*
2015-07-04 15:19:30 +08:00
if (result == RT_EOK)
return osOK;
else
return osErrorOS;
2013-01-08 22:40:58 +08:00
*/
}
// Timer Management Public API
/// Create timer
osTimerId osTimerCreate(osTimerDef_t *timer_def, os_timer_type type, void *argument)
{
2015-07-04 15:19:30 +08:00
uint8_t flag = RT_TIMER_FLAG_SOFT_TIMER;
if (type == osTimerPeriodic)
{
flag |= RT_TIMER_FLAG_PERIODIC;
}
return rt_timer_create(timer_def->name, timer_def->timeout, argument, timer_def->time, flag);
2013-01-08 22:40:58 +08:00
}
/// Start or restart timer
osStatus osTimerStart(osTimerId timer_id, uint32_t millisec)
{
2015-07-04 15:19:30 +08:00
rt_err_t result;
rt_tick_t ticks;
ticks = rt_tick_from_millisecond(millisec);
rt_timer_control(timer_id, RT_TIMER_CTRL_SET_TIME, &ticks);
result = rt_timer_start(timer_id);
if (result == RT_EOK)
return osOK;
else
return osErrorOS;
2013-01-08 22:40:58 +08:00
}
/// Stop timer
osStatus osTimerStop(osTimerId timer_id)
{
2015-07-04 15:19:30 +08:00
rt_err_t result;
result = rt_timer_stop(timer_id);
if (result == RT_EOK)
return osOK;
else
return osErrorOS;
2013-01-08 22:40:58 +08:00
}
// Mutex Public API
/// Create and Initialize a Mutex object
osMutexId osMutexCreate(osMutexDef_t *mutex_def)
{
2015-07-04 15:19:30 +08:00
return rt_mutex_create(mutex_def->name, mutex_def->flag);
2013-01-08 22:40:58 +08:00
}
/// Wait until a Mutex becomes available
osStatus osMutexWait(osMutexId mutex_id, uint32_t millisec)
{
2015-07-04 15:19:30 +08:00
rt_err_t result;
rt_tick_t ticks;
2013-01-08 22:40:58 +08:00
2015-07-04 15:19:30 +08:00
ticks = rt_tick_from_millisecond(millisec);
result = rt_mutex_take(mutex_id, ticks);
2013-01-08 22:40:58 +08:00
2015-07-04 15:19:30 +08:00
if (result == RT_EOK)
return osOK;
else
return osErrorOS;
2013-01-08 22:40:58 +08:00
}
/// Release a Mutex that was obtained with osMutexWait
osStatus osMutexRelease(osMutexId mutex_id)
{
2015-07-04 15:19:30 +08:00
rt_err_t result;
2013-01-08 22:40:58 +08:00
2015-07-04 15:19:30 +08:00
result = rt_mutex_release(mutex_id);
2013-01-08 22:40:58 +08:00
2015-07-04 15:19:30 +08:00
if (result == RT_EOK)
return osOK;
else
return osErrorOS;
}
osStatus osMutexDelete (osMutexId mutex_id)
{
rt_err_t result;
result = rt_mutex_delete(mutex_id);
if (result == RT_EOK)
return osOK;
else
return osErrorOS;
2013-01-08 22:40:58 +08:00
}
// Semaphore Public API
/// Create and Initialize a Semaphore object
osSemaphoreId osSemaphoreCreate(osSemaphoreDef_t *semaphore_def, int32_t count)
{
2015-07-04 15:19:30 +08:00
return rt_sem_create(semaphore_def->name, count, semaphore_def->flag);
2013-01-08 22:40:58 +08:00
}
/// Wait until a Semaphore becomes available
int32_t osSemaphoreWait(osSemaphoreId semaphore_id, uint32_t millisec)
{
2015-07-04 15:19:30 +08:00
rt_tick_t ticks;
2013-01-08 22:40:58 +08:00
2015-07-04 15:19:30 +08:00
if (semaphore_id == RT_NULL)
return -1;
2013-01-08 22:40:58 +08:00
2015-07-04 15:19:30 +08:00
ticks = rt_tick_from_millisecond(millisec);
rt_sem_take(semaphore_id, ticks);
2013-01-08 22:40:58 +08:00
2015-07-04 15:19:30 +08:00
return semaphore_id->value;
2013-01-08 22:40:58 +08:00
}
/// Release a Semaphore
osStatus osSemaphoreRelease(osSemaphoreId semaphore_id)
{
2015-07-04 15:19:30 +08:00
rt_err_t result;
2013-01-08 22:40:58 +08:00
2015-07-04 15:19:30 +08:00
result = rt_sem_release(semaphore_id);
2013-01-08 22:40:58 +08:00
2015-07-04 15:19:30 +08:00
if (result == RT_EOK)
return osOK;
else
return osErrorOS;
2013-01-08 22:40:58 +08:00
}
// Memory Management Public API
/// Create and Initialize memory pool
osPoolId osPoolCreate(osPoolDef_t *pool_def)
{
2015-07-04 15:19:30 +08:00
return rt_mp_create(pool_def->name, pool_def->block_count, pool_def->block_size);
2013-01-08 22:40:58 +08:00
}
/// Allocate a memory block from a memory pool
void *osPoolAlloc(osPoolId pool_id)
{
2015-07-04 15:19:30 +08:00
return rt_mp_alloc(pool_id, 0);
2013-01-08 22:40:58 +08:00
}
/// Allocate a memory block from a memory pool and set memory block to zero
void *osPoolCAlloc(osPoolId pool_id)
{
2015-07-04 15:19:30 +08:00
return RT_NULL;
2013-01-08 22:40:58 +08:00
}
/// Return an allocated memory block back to a specific memory pool
osStatus osPoolFree(osPoolId pool_id, void *block)
{
2015-07-04 15:19:30 +08:00
rt_mp_free(block);
2013-01-08 22:40:58 +08:00
2015-07-04 15:19:30 +08:00
return osOK;
2013-01-08 22:40:58 +08:00
}
// Message Queue Management Public API
/// Create and Initialize Message Queue
osMessageQId osMessageCreate(osMessageQDef_t *queue_def, osThreadId thread_id)
{
2015-07-04 15:19:30 +08:00
return rt_mq_create(queue_def->name, queue_def->msg_size, queue_def->max_msgs, queue_def->flag);
2013-01-08 22:40:58 +08:00
}
/// Put a Message to a Queue
osStatus osMessagePut(osMessageQId queue_id, uint32_t info, uint32_t millisec)
{
2015-07-04 15:19:30 +08:00
rt_err_t result;
2013-01-08 22:40:58 +08:00
2015-07-04 15:19:30 +08:00
result = rt_mq_send(queue_id, &info, 4);
2013-01-08 22:40:58 +08:00
2015-07-04 15:19:30 +08:00
if (result == RT_EOK)
return osOK;
else
return osErrorOS;
2013-01-08 22:40:58 +08:00
}
/// Get a Message or Wait for a Message from a Queue
osEvent osMessageGet(osMessageQId queue_id, uint32_t millisec)
{
2015-07-04 15:19:30 +08:00
osEvent event;
rt_err_t result;
rt_tick_t ticks;
ticks = rt_tick_from_millisecond(millisec);
result = rt_mq_recv(queue_id, &event.value, 4, ticks);
if (result == RT_EOK)
{
event.status = osEventMessage;
}
else
{
event.status = osEventTimeout;
}
return event;
2013-01-08 22:40:58 +08:00
}
// Mail Queue Management Public API
/// Create and Initialize mail queue
osMailQId osMailCreate(osMailQDef_t *queue_def, osThreadId thread_id)
{
2015-07-04 15:19:30 +08:00
return RT_NULL;
2013-01-08 22:40:58 +08:00
}
/// Allocate a memory block from a mail
void *osMailAlloc(osMailQId queue_id, uint32_t millisec)
{
2015-07-04 15:19:30 +08:00
return RT_NULL;
2013-01-08 22:40:58 +08:00
}
/// Allocate a memory block from a mail and set memory block to zero
void *osMailCAlloc(osMailQId queue_id, uint32_t millisec)
{
2015-07-04 15:19:30 +08:00
return RT_NULL;
2013-01-08 22:40:58 +08:00
}
/// Free a memory block from a mail
osStatus osMailFree(osMailQId queue_id, void *mail)
{
2015-07-04 15:19:30 +08:00
return osErrorOS;
2013-01-08 22:40:58 +08:00
}
/// Put a mail to a queue
osStatus osMailPut(osMailQId queue_id, void *mail)
{
2015-07-04 15:19:30 +08:00
return osErrorOS;
2013-01-08 22:40:58 +08:00
}
/// Get a mail from a queue
osEvent osMailGet(osMailQId queue_id, uint32_t millisec)
{
osEvent ret;
if (queue_id == NULL) {
ret.status = osErrorParameter;
return ret;
}
ret = osMessageGet(*((void **)queue_id), millisec);
if (ret.status == osEventMessage) ret.status = osEventMail;
return ret;
}