| 284 | inline SPIClass &getSPIinstance() { return SPI; } |
| 285 | |
| 286 | void attribute8(char a, uint8_t value) { |
| 287 | args.attribute8.attr = a; |
| 288 | args.attribute8.value = value; |
| 289 | sendCommand('Y', &args, 2); |
| 290 | } |
| 291 | |
| 292 | void attribute8(char a, bool value) { |
| 293 | args.attribute8.attr = a; |
nothing calls this directly
no outgoing calls
no test coverage detected