Major code cleanup and preparation for PartialMap Macro Module

- Code should be working, but much is untested
- All of the old modules will need to update and use the new DefaultMap keymap
- There might still be some naming conflicts with some Scan Modules
This commit is contained in:
Jacob Alexander 2014-04-06 11:49:27 -07:00
parent f3e22fb242
commit 9d423a64a8
81 changed files with 1373 additions and 904 deletions

View file

@ -45,7 +45,7 @@ void printstrs( char* first, ... )
while ( !( cur[0] == '\0' && cur[1] == '\0' && cur[2] == '\0' ) )
{
// Print out the given string
output_putstr( cur );
Output_putstr( cur );
// Get the next argument ready
cur = va_arg( ap, char* );
@ -62,10 +62,10 @@ void _print( const char* s )
char c;
while ( ( c = pgm_read_byte( s++ ) ) != '\0' )
{
output_putchar( c );
Output_putchar( c );
}
#elif defined(_mk20dx128_) || defined(_mk20dx256_) // ARM
output_putstr( (char*)s );
Output_putstr( (char*)s );
#endif
}