FreeCalypso > hg > fc-pcm-if
view sw/mcsi-rx/main.c @ 13:315428573a25
fc-mcsi-rxtx: implement record function
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Mon, 28 Oct 2024 07:24:53 +0000 |
parents | de85c3680d7e |
children |
line wrap: on
line source
/* * Main module for fc-mcsi-rx program. */ #include <stdio.h> #include <stdlib.h> FILE *out_binfile; main(argc, argv) char **argv; { if (argc != 3) { fprintf(stderr, "usage: %s ttyport out-bin-file\n", argv[0]); exit(1); } open_serial_port(argv[1]); set_serial_baudrate(187500); init_serial_flush(); out_binfile = fopen(argv[2], "w"); if (!out_binfile) { perror(argv[2]); exit(1); } main_loop(); /* does not return */ }