softuart tx complete

This commit is contained in:
Andrew 2017-01-22 22:38:24 +08:00 committed by Bernhard Guillon
parent 5192f73183
commit 22987435fa
3 changed files with 50 additions and 6 deletions

View file

@ -25,6 +25,8 @@ void user_init(void)
{
if (!softuart_available())
continue;
printf("%c",softuart_read());
char c = softuart_read();
printf("input:%c\n",c);
softuart_puts("start\r\n");
}
}