Setup
| 53 | |
| 54 | // Setup |
| 55 | inline void Scan_setup() |
| 56 | { |
| 57 | // Setup GPIO pins for matrix scanning |
| 58 | Matrix_setup(); |
| 59 | |
| 60 | // Setup ISSI chip to control the leds |
| 61 | LED_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…