Starting point for new port - a project that will build, but as yet no implementation.

This commit is contained in:
Richard Barry 2010-08-12 13:19:52 +00:00
parent e854ebf1f5
commit b2929dc036
24 changed files with 1532 additions and 0 deletions

View file

@ -0,0 +1,31 @@
void main(void)
{
unsigned long i = 0;
for( ;; )
{
i++;
}
}
void vApplicationSetupTimerInterrupt( void )
{
}
void vApplicationMallocFailedHook( void )
{
for( ;; );
}
void vApplicationStackOverflowHook( void )
{
}
void vApplicationIdleHook( void )
{
}