view target-utils/helloapp/main-fixeduart.c @ 682:a7496a1e0df7

doc/Flash-programming: typo fix
author Mychaela Falconia <falcon@freecalypso.org>
date Tue, 10 Mar 2020 04:10:05 +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();
	}
}