Changeset 0c6984e in mainline for console/console.c
- Timestamp:
- 2006-06-02T17:33:44Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f1b4e74
- Parents:
- e1c4849
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
console/console.c
re1c4849 r0c6984e 182 182 if (c == '0') { 183 183 /* switch to kernel console*/ 184 sync_send_2(fb_info.phone, FB_CURSOR_VISIBILITY, 0, 0, NULL, NULL);184 nsend_call(fb_info.phone, FB_CURSOR_VISIBILITY, 0); 185 185 nsend_call_2(fb_info.phone, FB_SET_STYLE, DEFAULT_FOREGROUND_COLOR, DEFAULT_BACKGROUND_COLOR); 186 186 nsend_call(fb_info.phone, FB_CLEAR, 0); … … 291 291 292 292 break; 293 293 294 case CONSOLE_GETSIZE: 294 295 arg1 = fb_info.cols; 295 296 arg2 = fb_info.rows; 296 297 break; 297 298 case CONSOLE_FLUSH: 299 sync_send_2(fb_info.phone, FB_FLUSH, 0, 0, NULL, NULL); 300 break; 298 301 case CONSOLE_GETCHAR: 299 302 if (keybuffer_empty(&(connections[consnum].keybuffer))) {
Note:
See TracChangeset
for help on using the changeset viewer.