From 79559c5041835ce6835a35265a97e291789ec0b0 Mon Sep 17 00:00:00 2001 From: Paul Selkirk Date: Wed, 16 Mar 2016 10:15:47 -0400 Subject: Added serial RPC transport and lots more... Added RPC function to get server version number. Substantially reworked GNUMakefile with conditionals. Renamed rpc_*() and xdr_*() to hal_*() for consistency. Moved hal_io_fmc.c from stm32 repo. --- tests/test-rpc_server.c | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) (limited to 'tests/test-rpc_server.c') diff --git a/tests/test-rpc_server.c b/tests/test-rpc_server.c index 6eff755..eb11f6d 100644 --- a/tests/test-rpc_server.c +++ b/tests/test-rpc_server.c @@ -1,16 +1,10 @@ -#include -#include -#include -#include - #include -#include int main (int argc, char *argv[]) { - if (rpc_server_init() != HAL_OK) + if (hal_rpc_server_init() != HAL_OK) return 1; - rpc_server_main(); + hal_rpc_server_main(); return 0; } -- cgit v1.2.3