----------------------------------------------------------
| 269 | |
| 270 | // ---------------------------------------------------------- |
| 271 | void Arduino_ST7789::writeData16(uint16_t d16) |
| 272 | { |
| 273 | DC_DATA; |
| 274 | CS_ACTIVE; |
| 275 | SPI_START; |
| 276 | |
| 277 | writeMulti(d16,1); |
| 278 | |
| 279 | CS_IDLE; |
| 280 | SPI_END; |
| 281 | } |
| 282 | |
| 283 | // ---------------------------------------------------------- |
| 284 | void Arduino_ST7789::displayInit(const uint8_t *addr) |
nothing calls this directly
no outgoing calls
no test coverage detected