Changeset ff3b3197 in mainline for arch


Ignore:
Timestamp:
2005-11-25T22:58:38Z (20 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
f4338d2
Parents:
78c32b4
Message:

Implement basic kernel console command recognition.
Commands without arguments are now recognized.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • arch/ia32/src/drivers/i8042.c

    r78c32b4 rff3b3197  
    3838#include <console/chardev.h>
    3939#include <console/console.h>
     40#include <macros.h>
    4041
    4142/**
     
    308309                break;
    309310            default:
    310                 letter = (ascii >= 'a') && (ascii <= 'z');
     311                letter = is_lower(ascii);
    311312                capslock = (keyflags & PRESSED_CAPSLOCK) || (lockflags & LOCKED_CAPSLOCK);
    312313                shift = keyflags & PRESSED_SHIFT;
Note: See TracChangeset for help on using the changeset viewer.