initial commit

This commit is contained in:
2025-08-26 19:58:07 -04:00
commit 7367171767
27 changed files with 4618 additions and 0 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