Add freedom-kl25z/minnsh configuration: This is an experiment to see just how small we and get an NSH configuration. From Alan Carvalho de Assis.

This commit is contained in:
Gregory Nutt 2013-09-30 09:20:11 -06:00
parent dc3ac21264
commit d4e689ef1a

View File

@ -109,7 +109,7 @@
*
**************************************************************************/
uint32_t kl_lowgetc(void)
int kl_lowgetc(void)
{
uint8_t ch = 0;
@ -125,5 +125,5 @@ uint32_t kl_lowgetc(void)
ch = getreg8(CONSOLE_BASE+KL_UART_D_OFFSET);
#endif
return (int) ch;
return (int)ch;
}