Go to the documentation of this file.
25#ifndef __VSF_FREERTOS_H__
26#define __VSF_FREERTOS_H__
41#include "../vsf_freertos_cfg.h"
55#ifndef configMINIMAL_STACK_SIZE
56# define configMINIMAL_STACK_SIZE ((uint16_t)1024)
61#ifndef configMAX_PRIORITIES
62# define configMAX_PRIORITIES (25)
66#ifndef configTICK_RATE_HZ
67# define configTICK_RATE_HZ (1000)
70#ifndef configUSE_16_BIT_TICKS
71# define configUSE_16_BIT_TICKS 0
76#define pdMS_TO_TICKS(xTimeInMs) ((TickType_t)(xTimeInMs))
77#define pdTICKS_TO_MS(xTicks) ((uint32_t)(xTicks))
82# define configASSERT(x) ((void)(x))