Changeset 28a5ebd in mainline for uspace/srv/hid/output/ctl
- Timestamp:
- 2020-06-18T15:39:50Z (6 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- ce52c333
- Parents:
- 4f663f3e
- Location:
- uspace/srv/hid/output/ctl
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/output/ctl/serial.c
r4f663f3e r28a5ebd 57 57 vt100_goto(state, col, row); 58 58 vt100_set_attr(state, field->attrs); 59 vt100_put wchar(state, field->ch);59 vt100_putuchar(state, field->ch); 60 60 } 61 61 … … 122 122 }; 123 123 124 errno_t serial_init(vt100_put wchar_t putwchar_fn,124 errno_t serial_init(vt100_putuchar_t putuchar_fn, 125 125 vt100_control_puts_t control_puts_fn, vt100_flush_t flush_fn) 126 126 { 127 127 vt100_state_t *state = 128 vt100_state_create(SERIAL_COLS, SERIAL_ROWS, put wchar_fn,128 vt100_state_create(SERIAL_COLS, SERIAL_ROWS, putuchar_fn, 129 129 control_puts_fn, flush_fn); 130 130 if (state == NULL) -
uspace/srv/hid/output/ctl/serial.h
r4f663f3e r28a5ebd 37 37 #include "../proto/vt100.h" 38 38 39 extern errno_t serial_init(vt100_put wchar_t, vt100_control_puts_t, vt100_flush_t);39 extern errno_t serial_init(vt100_putuchar_t, vt100_control_puts_t, vt100_flush_t); 40 40 41 41 #endif
Note:
See TracChangeset
for help on using the changeset viewer.
