Setup
| 62 | |
| 63 | // Setup |
| 64 | inline void Scan_setup() |
| 65 | { |
| 66 | // Register Scan CLI dictionary |
| 67 | CLI_registerDictionary( scanCLIDict, scanCLIDictName ); |
| 68 | |
| 69 | // Setup GPIO pins for matrix scanning |
| 70 | Matrix_setup(); |
| 71 | |
| 72 | // Start Matrix Scanner |
| 73 | Matrix_start(); |
| 74 | } |
| 75 | |
| 76 | |
| 77 | // Main Poll Loop |
nothing calls this directly
no test coverage detected
searching dependent graphs…