Nathan MONNIER
/
Projet_S3
Projet_S3
serie.h
- Committer:
- dujardin
- Date:
- 2021-08-25
- Revision:
- 8:cfcf73c16fab
- Parent:
- 6:edb27e228558
- Child:
- 10:6f9340af7926
File content as of revision 8:cfcf73c16fab:
// variables globales liées à la reception serie int arecv = 0 ; // stockage intermediaire du char arrivé void interrupt() // reception sur liaison serie { // ici on decode un exemple simple // un 'a' met posx = 10 un 'b' met posx = 20 arecv = serie.getc(); if (arecv == 'a') // c'est un 'a' { posx = 10 ; } if (arecv == 'b')// c'est B { posx = 20 ; } return; }