| 189 | } |
| 190 | |
| 191 | static void send_reply(struct any_frame* f) |
| 192 | { |
| 193 | print("reply 0x%02x", f->f.type); |
| 194 | wait_until_writeable(FLUXENGINE_CMD_IN_EP_NUM); |
| 195 | USBFS_LoadInEP(FLUXENGINE_CMD_IN_EP_NUM, (uint8_t*) f, f->f.size); |
| 196 | } |
| 197 | |
| 198 | static void send_error(int code) |
| 199 | { |
no test coverage detected