Sign in
nest-open-source
/
nest-connect
/
1.3
/
freertos
/
refs/heads/master
/
.
/
FreeRTOS
/
Source
/
init.c
blob: c88f0537938e9a7b7730871069fad4c0760cefd4 [
file
] [
log
] [
blame
] [
edit
]
#include
"FreeRTOS.h"
// function declarations
void
xInitRTOS
(
void
);
void
xInitQueues
(
void
);
void
xInitTimers
(
void
);
void
xInitTCBs
(
void
);
void
xInitRTOS
(
void
)
{
xInitQueues
();
#if ( configUSE_TIMERS == 1 )
xInitTimers
();
#endif
xInitTCBs
();
}