APP2_S5

Dependencies:   mbed-rtos mbed

Files at this revision

API Documentation at this revision

Comitter:
joGenie
Date:
Mon Jan 27 14:22:28 2014 +0000
Commit message:
First;

Changed in this revision

main.cpp Show annotated file Show diff for this revision Revisions of this file
mbed-rtos.lib Show annotated file Show diff for this revision Revisions of this file
mbed.bld Show annotated file Show diff for this revision Revisions of this file
diff -r 000000000000 -r f7d5819b29d5 main.cpp
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Mon Jan 27 14:22:28 2014 +0000
@@ -0,0 +1,48 @@
+#include "mbed.h"
+#include "rtos.h"
+
+DigitalIn en_1(p15);
+DigitalIn en_2(p16);
+AnalogIn ea_1(p19);
+AnalogIn ea_2(p20);
+
+void lecture_analog(void const *args)
+{
+    while (true)
+    {
+        // synchronisation sur la période d'échantillonnage
+        // lecture de l'étampe temporelle
+        // lecture des échantillons analogiques
+        // calcul de la nouvelle moyenne courante
+        // génération éventuelle d'un événement
+    }
+}
+
+void lecture_num(void const *args)
+{
+    while (true)
+    {
+        // synchronisation sur la période d'échantillonnage
+        // lecture de l'étampe temporelle
+        // lecture des échantillons numériques
+        // prise en charge du phénomène de rebond
+        // génération éventuelle d'un événement
+    }
+}
+
+void collection(void const *args)
+{
+    while (true)
+    {
+        // attente et lecture d'un événement
+        // écriture de l'événement en sortie (port série)
+    }
+}
+
+int main()
+{
+    set_time(time(NULL));
+    // initialisation du RTC
+    // démarrage des tâches
+    while(1) {}
+}
\ No newline at end of file
diff -r 000000000000 -r f7d5819b29d5 mbed-rtos.lib
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mbed-rtos.lib	Mon Jan 27 14:22:28 2014 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/mbed_official/code/mbed-rtos/#f88660a9bed1
diff -r 000000000000 -r f7d5819b29d5 mbed.bld
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mbed.bld	Mon Jan 27 14:22:28 2014 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/mbed_official/code/mbed/builds/a9913a65894f
\ No newline at end of file