Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
1702 | - | 1 | /* USB Host Shield board test sketch header */ |
2 | #ifndef _BOARD_TEST_H_ |
||
3 | #define _BOARD_TEST_H_ |
||
4 | |||
5 | /* PGMSPACE */ |
||
6 | #include <inttypes.h> |
||
7 | #include <avr/pgmspace.h> |
||
8 | |||
9 | /* Messages */ |
||
10 | const char startBanner [] PROGMEM = "\r\nCircuits At Home 2010" |
||
11 | "\r\nUSB Host Shield QC test routine\r\n"; |
||
12 | const char anykey_msg [] PROGMEM = "\r\nPress any key to continue..."; |
||
13 | const char testpassed_msg [] PROGMEM = "\r\nTest PASSED"; |
||
14 | const char testfailed_msg [] PROGMEM = "\r\nTest FAILED*!*"; |
||
15 | const char osctest_oscstate_msg [] PROGMEM = " Oscillator state is "; |
||
16 | const char test_halted_msg [] PROGMEM = "\r\nTest Halted." |
||
17 | "\r\n0x55 pattern is being transmitted via SPI to aid in troubleshooting"; |
||
18 | const char spitest_fail_msg [] PROGMEM = "\r\nSPI transmit/receive mismatch" |
||
19 | "\r\nValue written: "; |
||
20 | |||
21 | #endif |