Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of Keyboard_Interrupt by
Revision 2:1432d7c567f4, committed 2015-06-02
- Comitter:
- TakamiMa
- Date:
- Tue Jun 02 08:51:43 2015 +0000
- Parent:
- 1:5440b3d7f435
- Commit message:
- If you type "5", "6", "7", "Enter", you receive "567".; this "567" is int variable in Program.; so you can calculate using it.
Changed in this revision
main.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- a/main.cpp Tue Jun 02 03:00:32 2015 +0000 +++ b/main.cpp Tue Jun 02 08:51:43 2015 +0000 @@ -1,14 +1,36 @@ #include "mbed.h" +#include <string.h> + +//If you type more than two numbers, then type Enter, you get connected number. Serial pc(SERIAL_TX, SERIAL_RX); +char line[16]; + +int counter = 0; + void my_Interrupt(){ char key; key = pc.getc(); + int number = int(key-'0'); + if( (number > 9 || number < 0) && key!='\r'){ + pc.printf("you can type only number, you cannot use dot.\r\n"); + goto skip; + } + if(key == '\r'){ + pc.printf("Enter\r\n"); + pc.printf("%d\r\n", atoi(line)); + counter=0; + goto skip; + } + line[counter] = key; + counter++; pc.printf("Interrupted %c\r\n", key); +skip: } int main() { + memset(line, '\0', 16); pc.attach(my_Interrupt, Serial::RxIrq); while(1){} }