Files
picomap/firmware/test.cpp

12 lines
222 B
C++
Raw Normal View History

#include "dispatch.h"
#include "handlers.h"
static constexpr handler_entry handlers[] = {
{RequestPICOBOOT::ext_id, handle_picoboot},
{RequestInfo::ext_id, handle_info},
};
int main() {
dispatch(handlers);
}