add individual LED configuration over USB ethernet

This commit is contained in:
2025-08-27 15:01:11 -04:00
parent c6ac21a15b
commit 26d89c5492
21 changed files with 3135 additions and 128 deletions
+12
View File
@@ -0,0 +1,12 @@
#ifndef USB_SERVER_H_
#define USB_SERVER_H_
#define INIT_IP4(a, b, c, d) \
{ PP_HTONL(LWIP_MAKEU32(a, b, c, d)) }
void usb_server_init(void);
const void ws_receive_handler(uint8_t *data, uint16_t len);
const void ws_open_handler(struct ws_state * wss);
#endif