Split dispatch init/run, join IPv6 multicast discovery group in firmware

This commit is contained in:
Ian Gulliver
2026-04-06 20:01:22 +09:00
parent 00b960d81d
commit 49bbe1b29c
6 changed files with 40 additions and 7 deletions

View File

@@ -8,4 +8,5 @@ struct handler_entry {
void (*handle)(usb_cdc&, uint32_t);
};
[[noreturn]] void dispatch(std::span<const handler_entry> handlers);
void dispatch_init();
[[noreturn]] void dispatch_run(std::span<const handler_entry> handlers);