----------------------------------------------------------
| 256 | |
| 257 | // ---------------------------------------------------------- |
| 258 | void Arduino_ST7789::writeData(uint8_t d8) |
| 259 | { |
| 260 | DC_DATA; |
| 261 | CS_ACTIVE; |
| 262 | SPI_START; |
| 263 | |
| 264 | writeSPI(d8); |
| 265 | |
| 266 | CS_IDLE; |
| 267 | SPI_END; |
| 268 | } |
| 269 | |
| 270 | // ---------------------------------------------------------- |
| 271 | void Arduino_ST7789::writeData16(uint16_t d16) |
nothing calls this directly
no outgoing calls
no test coverage detected