FreeCalypso > hg > freecalypso-tools
view rfcal/cmu200/main.c @ 195:db9ee7745cdd
fc-cmu200d: socket handling skeleton added
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Mon, 24 Apr 2017 01:43:02 +0000 |
parents | 31d43f0e469a |
children |
line wrap: on
line source
/* * This module contains the main() function for fc-cmu200d. */ #include <stdio.h> #include <stdlib.h> int target_fd; static char default_socket_pathname[] = "/tmp/fc_rftest_socket"; char *bind_socket_pathname; main(argc, argv) char **argv; { if (argc < 3 || argc > 4) { fprintf(stderr, "usage: %s serial-port baud [socket-pathname]\n", argv[0]); exit(1); } open_target_serial(argv[1], argv[2]); set_serial_nonblock(0); init_cmu200(); if (argc > 3) bind_socket_pathname = argv[3]; else bind_socket_pathname = default_socket_pathname; create_listener_socket(); for (;;) { get_socket_connection(); handle_session(); } }