| 86 | */ |
| 87 | |
| 88 | static void myDigitalWrite (struct wiringPiNodeStruct *node, int pin, int value) |
| 89 | { |
| 90 | serialPutchar (node->fd, value == 0 ? '0' : '1') ; |
| 91 | serialPutchar (node->fd, pin - node->pinBase) ; |
| 92 | } |
| 93 | |
| 94 | |
| 95 | /* |
nothing calls this directly
no test coverage detected