----------------------------------------------------------
| 243 | |
| 244 | // ---------------------------------------------------------- |
| 245 | void Arduino_ST7789::writeCmd(uint8_t c) |
| 246 | { |
| 247 | DC_COMMAND; |
| 248 | CS_ACTIVE; |
| 249 | SPI_START; |
| 250 | |
| 251 | writeSPI(c); |
| 252 | |
| 253 | CS_IDLE; |
| 254 | SPI_END; |
| 255 | } |
| 256 | |
| 257 | // ---------------------------------------------------------- |
| 258 | void Arduino_ST7789::writeData(uint8_t d8) |
nothing calls this directly
no outgoing calls
no test coverage detected