Hello! I have configured PORT 2 to have eight fast interruptions. In Keil I can simulate them because I have created different buttons to simulate fast interruptions
define button "ppoAvisoAI", "PORT2 |=0x0100" define button "finAvisoAI", "PORT2 &=0xFEFF"
while (1) { printf(menu); select=input(); switch (select) { case '1': P2_P8=1; break; case '2': P2_P8=0; break; case '3': break; } }