Version initiale

Dependencies:   mbed

Fork of Le_Pont_V10116 by SAGNES Christophe

Committer:
CS
Date:
Thu Mar 29 15:41:22 2018 +0000
Revision:
2:a10c8133d71c
Parent:
0:8b3c6f593515
Publish of "Le_Pont_V11003" in the team folder

Who changed what in which revision?

UserRevisionLine numberNew contents of line
CS 0:8b3c6f593515 1 //******************************************************************
CS 0:8b3c6f593515 2 //
CS 0:8b3c6f593515 3 // Gemma
CS 0:8b3c6f593515 4 //
CS 0:8b3c6f593515 5 // Logiciel de gestion des modes de marche et d'arret du Pont Bacalan
CS 0:8b3c6f593515 6 //
CS 0:8b3c6f593515 7 //
CS 0:8b3c6f593515 8 //
CS 0:8b3c6f593515 9 //********************************************************************
CS 0:8b3c6f593515 10 #ifndef _Gemma_
CS 0:8b3c6f593515 11 #define _Gemma_
CS 0:8b3c6f593515 12
CS 0:8b3c6f593515 13 #include "mbed.h"
CS 0:8b3c6f593515 14
CS 0:8b3c6f593515 15 #include "Constantes.h"
CS 0:8b3c6f593515 16 #include "Variable.h"
CS 0:8b3c6f593515 17 #include "Pilote.h"
CS 0:8b3c6f593515 18 #include "Synchronisation.h"
CS 0:8b3c6f593515 19
CS 0:8b3c6f593515 20 #define PERIODE_MAJ_PARAM 50
CS 0:8b3c6f593515 21 #define V_MAX 3260
CS 0:8b3c6f593515 22
CS 0:8b3c6f593515 23 extern void vGemma_Init () ;
CS 0:8b3c6f593515 24 extern void vGemma ( Pilote* Rive_Droite , Pilote* Rive_Gauche );
CS 0:8b3c6f593515 25
CS 0:8b3c6f593515 26 #endif