| 1323 | } |
| 1324 | |
| 1325 | uint8_t panel_spi_transfer(uint32_t txData, uint32_t* rxData) { |
| 1326 | (void)rxData; |
| 1327 | (txData & 0x100 ? panel_write_param : panel_write_cmd)((uint8_t)txData); |
| 1328 | /* TODO: return different frame length after read commands */ |
| 1329 | return 9; |
| 1330 | } |
| 1331 | |
| 1332 | void panel_spi_deselect(void) { |
| 1333 | } |
nothing calls this directly
no outgoing calls
no test coverage detected