From e63fe005d578cf096e21f63eae8ec4a69dd7f2e5 Mon Sep 17 00:00:00 2001 From: adriy Date: Wed, 15 Feb 2017 20:44:39 +0000 Subject: [PATCH] Supprimer 'RegulationIntensite.h' --- RegulationIntensite.h | 34 ---------------------------------- 1 file changed, 34 deletions(-) delete mode 100644 RegulationIntensite.h diff --git a/RegulationIntensite.h b/RegulationIntensite.h deleted file mode 100644 index 0bc786f..0000000 --- a/RegulationIntensite.h +++ /dev/null @@ -1,34 +0,0 @@ -#ifndef REGULATIONINTENSITE_H -#define REGULATIONINTENSITE_H - -typedef struct { - float rapportR; - int pinU; - - float uMesure; - float uReel; -} PontDiviseur; - -typedef struct { - float r; - int pinU1; - int pinU2; - - float u1; - float u2; - float i; -} CurentFromR; - -typedef struct { - float targetI; - int pinPWM; - - float *curI; -} Reg; - -float readCurentFromR(CurentFromR *); -float readUFromPontDiviseur(PontDiviseur *); -void regulationI(Reg *); -void regulationVCE(Reg *); - -#endif