Files
picomap/firmware/firmware.cpp

16 lines
330 B
C++
Raw Permalink Normal View History

#include "dispatch.h"
#include "handlers.h"
2026-04-06 20:09:30 +09:00
std::string_view firmware_name = "picomap";
static constexpr handler_entry handlers[] = {
{RequestPICOBOOT::ext_id, handle_picoboot},
{RequestInfo::ext_id, handle_info},
{RequestLog::ext_id, handle_log},
};
int main() {
dispatch_init();
dispatch_run(handlers);
}