Changeset f6f22cdb in mainline for boot/arch/sparc32/src/putchar.c
- Timestamp:
- 2013-12-27T18:45:56Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 32e8cd1
- Parents:
- e47ed05
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/arch/sparc32/src/putchar.c
re47ed05 rf6f22cdb 47 47 /** Send a byte to the LEON3 serial console. 48 48 * 49 * @param byte Byte to send. 49 * @param byte Byte to send. 50 * 50 51 */ 51 52 static void scons_sendb(uint8_t byte) … … 56 57 /** Display a character 57 58 * 58 * @param ch Character to display 59 * @param ch Character to display 60 * 59 61 */ 60 62 void putchar(const wchar_t ch) … … 62 64 if (ch == '\n') 63 65 scons_sendb('\r'); 64 66 65 67 if (ascii_check(ch)) 66 68 scons_sendb((uint8_t) ch);
Note:
See TracChangeset
for help on using the changeset viewer.