| 98 | */ |
| 99 | |
| 100 | static void myPwmWrite (struct wiringPiNodeStruct *node, int pin, int value) |
| 101 | { |
| 102 | serialPutchar (node->fd, 'v') ; |
| 103 | serialPutchar (node->fd, pin - node->pinBase) ; |
| 104 | serialPutchar (node->fd, value & 0xFF) ; |
| 105 | } |
| 106 | |
| 107 | |
| 108 | /* |
nothing calls this directly
no test coverage detected