More work on mk20dx128vlf5 port.

- Basic compilation and loading is working
- LED can be turned on/off
- USB not yet working
This commit is contained in:
Jacob Alexander 2014-06-26 00:54:39 -07:00
parent acf8cb979c
commit 99d4aaba84
13 changed files with 190 additions and 189 deletions

View file

@ -64,7 +64,7 @@ void _print( const char* s )
{
Output_putchar( c );
}
#elif defined(_mk20dx128_) || defined(_mk20dx256_) // ARM
#elif defined(_mk20dx128_) || defined(_mk20dx128vlf5_) || defined(_mk20dx256_) // ARM
Output_putstr( (char*)s );
#endif
}