freemyipod r863 - Code Review

Jump to: navigation, search
Repository:freemyipod
Revision:r862‎ | r863 | r864 >
Date:21:23, 20 May 2012
Author:user890104
Status:new
Tags:
Comment:
emCORE: fix typo
Modified paths:
  • /emcore/trunk/console.c (modified) (history)

Diff [purge]

Index: emcore/trunk/console.c
@@ -275,7 +275,7 @@
276276 if ((consoles & 2) && (result = dbgconsole_read(buffer, length, timeout))) return result;
277277 #endif
278278 #ifdef HAVE_UART
279 - if ((consoles & 2) && (result = uart_read(buffer, length, timeout))) return result;
 279+ if ((consoles & 4) && (result = uart_read(buffer, length, timeout))) return result;
280280 #endif
281281 mutex_unlock(&console_readmutex);
282282 }