mirror of
https://github.com/travisgoodspeed/goodwatch
synced 2024-11-23 17:33:13 +00:00
Fixes bug where the key init routine could be stuck while booting due to uncleared IFG flags. #69
This commit is contained in:
parent
2543118df3
commit
200f861bdb
@ -14,6 +14,9 @@ void key_init(){
|
||||
together by rows and columns, which requires active scanning for
|
||||
a read but can allow for an initial wakeup on an interrupt. */
|
||||
|
||||
//Disable interrupts first.
|
||||
P2IE=0;
|
||||
|
||||
/* Columns 2.2, 2.1, 2.0, and 1.7 are set to output mode pulled
|
||||
high, so that any low row indicates a button press. */
|
||||
|
||||
@ -152,12 +155,16 @@ void __attribute__ ((interrupt(PORT2_VECTOR))) PORT2_ISR(void){
|
||||
char newchar=key_chr(key_scan());
|
||||
|
||||
//Bail quickly when the key is the same.
|
||||
if(lastchar==newchar) return;
|
||||
lastchar=newchar;
|
||||
app_cleartimer(); //Clear the idle timer.
|
||||
if(lastchar!=newchar){
|
||||
lastchar=newchar;
|
||||
app_cleartimer(); //Clear the idle timer.
|
||||
|
||||
printf("PORT2 fired, got character 0x%02x.\n",
|
||||
newchar);
|
||||
app_keypress(newchar);
|
||||
printf(" got character 0x%02x.\n",
|
||||
newchar);
|
||||
app_keypress(newchar);
|
||||
}else{
|
||||
//printf(".");
|
||||
}
|
||||
P2IFG=0;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user