MapleCoOS library for Maple platform to implement realtime CoOS . Also need change systick.c and systick.h in hardware\leaflabs\cores\maple folder Blink example #include <MapleCoOS.h> /* Blink Turns on an LED on for one second, then off for one second, repeatedly. * LED connected from digital pin 13 to ground. */ int ledPin = 13; // LED connected to digital pin 13 #define LCD_BLINK_PRI 3 /* Priority of 'lcd_blink' task. */ #define UART_PRINT_PRI 4 /* Priority of 'tart_print' task. */ OS_STK task_init_Stack[TASK_STK_SIZE]; /* Stack of 'task_init' task. */ OS_STK led_display_Stack[TASK_STK_SIZE...