Merge pull request #3140 from bridadan/remove_getchar_greentea_client

[tests] Replacing getchar with RawSerial getc in greentea-client
pull/3161/head
Martin Kojtal 2016-10-28 15:34:13 +02:00 committed by GitHub
commit c9f9ffa583
1 changed files with 1 additions and 1 deletions

View File

@ -533,7 +533,7 @@ enum Token {
*
*/
static int _get_char() {
return getchar();
return greentea_serial->getc();
}
/**