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 Le_Pont_V10015 by
Port_Serie.h
00001 /*******************************************************************/ 00002 /* */ 00003 /* Port Série */ 00004 /* */ 00005 /* Gestion du port série par interruption */ 00006 /* */ 00007 /* */ 00008 /*******************************************************************/ 00009 #ifndef _PORT_SERIE_ 00010 #define _PORT_SERIE_ 00011 00012 #include "mbed.h" 00013 #include <Serial.h> 00014 00015 #include "Constantes.h" 00016 #include "Variable.h" 00017 00018 #include "time.h" 00019 00020 #define TAILLE_BUFFER_EMISSION 128 00021 #define TAILLE_BUFFER_RECEPTION 128 00022 00023 00024 00025 extern void vPort_Serie_Init(int Baudrate) ; 00026 extern void vPort_Serie_Ouvre( void ) ; 00027 extern void vPort_Serie_Ferme( void ) ; 00028 extern void vPort_Serie_Cloture( void ) ; 00029 extern void vPort_Serie_Emission ( U8 Numero_Ordre_U8 ) ; 00030 extern U8 cControle_Reception( U8 Numero_Ordre_U8 ) ; 00031 extern void vPort_Serie_Reception ( U8 Numero_Ordre_U8 ) ; 00032 00033 #endif
Generated on Tue Jul 12 2022 13:32:39 by
