view target-utils/loadagent/sertimeout.c @ 720:b73c21a2148f

reorg: smallconv.c moved from ffstools/cal2text to librftab This module contains write_afcdac_ascii() and write_stdmap_ascii() functions; the plan is to make them available to other programs, particularly the upcoming addition of RF table dump to tiffs.
author Mychaela Falconia <falcon@freecalypso.org>
date Tue, 25 Aug 2020 06:28:44 +0000
parents 880c6d31e487
children
line wrap: on
line source

/*
 * Here we are going to implement a function for serial input with a timeout.
 */

#include <stdlib.h>

serial_in_timeout(count)
	unsigned count;
{
	int c;

	do
		c = serial_in_poll();
	while (c < 0 && --count);
	return c;
}

void
cmd_sertimeout(argbulk)
	char *argbulk;
{
	char *argv[2];
	int count;

	if (parse_args(argbulk, 1, 1, argv, 0) < 0)
		return;
	count = atoi(argv[0]);
	serial_in_timeout(count);
}