Changeset a9bd960c in mainline for console/console.c


Ignore:
Timestamp:
2006-06-02T17:46:21Z (19 years ago)
Author:
Josef Cejka <malyzelenyhnus@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
e87e18f
Parents:
f1b4e74
Message:

Added doxygen comments.
Console now supports SET_STYLE call.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • console/console.c

    rf1b4e74 ra9bd960c  
    299299                        sync_send_2(fb_info.phone, FB_FLUSH, 0, 0, NULL, NULL);         
    300300                        break;
     301                case CONSOLE_SET_STYLE:
     302                       
     303                        arg1 = IPC_GET_ARG1(call);
     304                        arg2 = IPC_GET_ARG2(call);
     305                        screenbuffer_set_style(&(connections[consnum]),arg1, arg2);
     306                        if (consnum == active_console)
     307                                nsend_call_2(fb_info.phone, FB_SET_STYLE, arg1, arg2);
     308                               
     309                        break;
    301310                case CONSOLE_GETCHAR:
    302311                        if (keybuffer_empty(&(connections[consnum].keybuffer))) {
Note: See TracChangeset for help on using the changeset viewer.