Main Detection Loop
| 77 | |
| 78 | // Main Detection Loop |
| 79 | inline uint8_t Scan_loop() |
| 80 | { |
| 81 | // Port Swap detection |
| 82 | Port_scan(); |
| 83 | |
| 84 | // Scan Matrix |
| 85 | Matrix_scan( Scan_scanCount++ ); |
| 86 | |
| 87 | // Process any interconnect commands |
| 88 | Connect_scan(); |
| 89 | |
| 90 | // Prepare any LED events |
| 91 | Pixel_process(); |
| 92 | |
| 93 | // Process any LED events |
| 94 | LED_scan(); |
| 95 | |
| 96 | return 0; |
| 97 | } |
| 98 | |
| 99 | |
| 100 | // Signal from Macro Module that all keys have been processed (that it knows about) |
nothing calls this directly
no test coverage detected
searching dependent graphs…