Main Poll Loop This is for operations that need to be run as often as possible Usually reserved for LED update routines and other things that need quick update rates
| 72 | // This is for operations that need to be run as often as possible |
| 73 | // Usually reserved for LED update routines and other things that need quick update rates |
| 74 | void Scan_poll() |
| 75 | { |
| 76 | // Prepare any LED events |
| 77 | Pixel_process(); |
| 78 | |
| 79 | // Process any LED events |
| 80 | LED_scan(); |
| 81 | } |
| 82 | |
| 83 | |
| 84 | // Main Periodic Scan |
nothing calls this directly
no test coverage detected
searching dependent graphs…