view target-utils/helloapp/main-fixeduart.c @ 744:2dcfad8a3ed0

make-imeisv utility written
author Mychaela Falconia <falcon@freecalypso.org>
date Mon, 19 Oct 2020 06:35:35 +0000
parents 8bdbae4c0e53
children
line wrap: on
line source

main()
{
	printf("Hello-world demo app (fixed UART version) running\n");
	for (;;) {
		putchar('=');
		if (command_entry())
			command_dispatch();
	}
}