Changeset 7ce3cb2 in mainline for uspace/srv/fb/serial_console.c
- Timestamp:
- 2009-04-02T22:04:29Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b888d5f
- Parents:
- 58d5a7e7
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fb/serial_console.c
r58d5a7e7 r7ce3cb2 103 103 } 104 104 105 void serial_putchar(wchar_t ch) 106 { 107 (*putc_function)(ch); 108 } 109 105 110 void serial_goto(const unsigned int row, const unsigned int col) 106 111 { … … 257 262 if (!attrs_same(*a0, *a1)) 258 263 serial_set_attrs(a1); 259 (*putc_function)(field->character);264 serial_putchar(field->character); 260 265 a0 = a1; 261 266 } … … 277 282 size_t intersize = 0; 278 283 279 charc;284 wchar_t c; 280 285 int col, row, w, h; 281 286 int fgcolor; … … 344 349 lastcol = col + 1; 345 350 lastrow = row; 346 (*putc_function)(c);351 serial_putchar(c); 347 352 retval = 0; 348 353 break;
Note:
See TracChangeset
for help on using the changeset viewer.