Setup
| 47 | |
| 48 | // Setup |
| 49 | inline void Scan_setup() |
| 50 | { |
| 51 | // Setup UART Connect, if Output_Available, this is the master node |
| 52 | Connect_setup( Output_Available, 1 ); |
| 53 | |
| 54 | // Setup GPIO pins for matrix scanning |
| 55 | Matrix_setup(); |
| 56 | |
| 57 | // Setup ISSI chip to control the leds |
| 58 | LED_setup(); |
| 59 | |
| 60 | // Setup the ST/NHD lcd display |
| 61 | LCD_setup(); |
| 62 | |
| 63 | // Setup Pixel Map |
| 64 | Pixel_setup(); |
| 65 | |
| 66 | // Start Matrix Scanner |
| 67 | Matrix_start(); |
| 68 | } |
| 69 | |
| 70 | |
| 71 | // Main Poll Loop |
nothing calls this directly
no test coverage detected
searching dependent graphs…