initial commit

This commit is contained in:
John Cobb
2015-02-04 15:02:53 -06:00
commit 9ec955eba4
35 changed files with 19750 additions and 0 deletions

23
main.c Normal file
View File

@ -0,0 +1,23 @@
/*
* main.c
*
* Created on: Feb 4, 2015
* Author: jcobb
*/
#include <avr/io.h>
#include "FreeRTOS.h"
#include "task.h"
#include "tasks.h" // local tasks defined for os
#define mainLED_TASK_PRIORITY (tskIDLE_PRIORITY)
portSHORT main(void)
{
xTaskCreate(vLEDFlashTask, (int8_t*) "LED", configMINIMAL_STACK_SIZE, NULL, mainLED_TASK_PRIORITY, NULL);
vTaskStartScheduler();
while(1){}
return 0;
}