Projet_S5 / Mbed 2 deprecated Repo_Noeud_Mobile_refactor

Dependencies:   mbed-rtos mbed

Fork of Repo_Noeud_Mobile by Projet_S5

Revision:
43:92c9e58b8a3a
Parent:
24:1a16e7eabb0c
Child:
44:0862bc49ffa7
--- a/Structures/Structure.h	Tue Apr 07 15:17:41 2015 +0000
+++ b/Structures/Structure.h	Wed Apr 08 14:10:12 2015 +0000
@@ -60,5 +60,30 @@
     Fixe_Vers_Mobile donnees;
 };
 
+typedef struct flex_range_t
+{
+    unsigned short min_index;
+    unsigned short max_index; 
+    unsigned short min_majeur;
+    unsigned short max_majeur;
+    unsigned short min_annulaire;
+    unsigned short max_annulaire;
+    unsigned short limit_index;
+    unsigned short limit_majeur;
+    unsigned short limit_annulaire;
+    
+    flex_range_t() : 
+        min_index(0xFFFF),
+        max_index(0x0000),
+        min_majeur(0xFFFF),
+        max_majeur(0x0000),
+        min_annulaire(0xFFFF),
+        max_annulaire(0x0000),
+        limit_index(0x0000),
+        limit_majeur(0x000),
+        limit_annulaire(0x0000)
+    {
+    }
+} flex_range_t;