comparison Debug/print/print.c @ 340:e8841d3c6db5

mk20dx256vlh7 working! - Interrupt vector table position fix (affected everything in the firmware) - Added fault debug messages - Fixed usbMuxUart
author Jacob Alexander <haata@kiibohd.com>
date Sat, 13 Jun 2015 20:42:12 -0700
parents 58cfcb7bac88
children 45feb80a2ad1
comparison
equal deleted inserted replaced
339:2f415c0b4b28 340:e8841d3c6db5
62 char c; 62 char c;
63 while ( ( c = pgm_read_byte( s++ ) ) != '\0' ) 63 while ( ( c = pgm_read_byte( s++ ) ) != '\0' )
64 { 64 {
65 Output_putchar( c ); 65 Output_putchar( c );
66 } 66 }
67 #elif defined(_mk20dx128_) || defined(_mk20dx128vlf5_) || defined(_mk20dx256_) // ARM 67 #elif defined(_mk20dx128_) || defined(_mk20dx128vlf5_) || defined(_mk20dx256_) || defined(_mk20dx256vlh7_) // ARM
68 Output_putstr( (char*)s ); 68 Output_putstr( (char*)s );
69 #endif 69 #endif
70 } 70 }
71 71
72 72