Author |
Message |
Topic: Problem with external interrupt on 16F876A |
ThePraiodanish
Replies: 2
Views: 5264
|
Forum: General CCS C Discussion Posted: Thu May 13, 2010 12:47 pm Subject: Problem with external interrupt on 16F876A |
Thanks for your fast reply, I didn't even recognize that warning before
Now it works as it should! |
Topic: Problem with external interrupt on 16F876A |
ThePraiodanish
Replies: 2
Views: 5264
|
Forum: General CCS C Discussion Posted: Thu May 13, 2010 10:33 am Subject: Problem with external interrupt on 16F876A |
Hi,
I've got a problem concerning external interrupts.
I am using the code posted somewhere else in this forum for reading the scancodes from a ps/2 keyboard, this works by triggering an interrupt ... |
Topic: PS/2 keyboard driver/decoder, interrupt driven, 16F and up |
ThePraiodanish
Replies: 14
Views: 135666
|
Forum: Code Library Posted: Sat Mar 06, 2010 7:36 am Subject: PS/2 keyboard driver/decoder, interrupt driven, 16F and up |
Hi all,
you can get rid of the "?" after each key pressed by replacing the line
return '?';
with
return 0x00;
in the function unsigned char translate(unsigned char scancode).
Alt ... |
|