Add eCos/Cortex RTOS support

This commit is contained in:
Alan Bowman
2011-05-23 20:32:00 +01:00
committed by Øyvind Harboe
parent 6d6837f988
commit a57daf23db
5 changed files with 523 additions and 1 deletions

View File

@@ -38,11 +38,13 @@ static int str_to_hex( char* hex_dst, char* src );
/* RTOSs */
extern struct rtos_type FreeRTOS_rtos;
extern struct rtos_type ThreadX_rtos;
extern struct rtos_type eCos_rtos;
static struct rtos_type *rtos_types[] =
{
&ThreadX_rtos,
&FreeRTOS_rtos,
&eCos_rtos,
NULL
};