1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
#include <stdio.h> #include <stdint.h> #include <string.h> #include <assert.h> #include <hal.h> #include <hal_internal.h> int main (int argc, char *argv[]) { if (rpc_server_init() != HAL_OK) return 1; rpc_server_main(); return 0; }