Jorn Dokter / Mbed 2 deprecated TEB_branch2

Dependencies:   mbed QEI HIDScope biquadFilter MODSERIAL FastPWM

Committer:
JornD
Date:
Wed Oct 16 09:24:22 2019 +0000
Branch:
Branch2
Revision:
61:4c7de1e2f9fe
Parent:
56:58cbb056e4be
Child:
64:5a6bf0cd1c50
WORKING - started implementation of the EMG processing;

Who changed what in which revision?

UserRevisionLine numberNew contents of line
JornD 24:d0ca537913c2 1 #ifndef header_h
JornD 24:d0ca537913c2 2 #define header_h
JornD 61:4c7de1e2f9fe 3
JornD 61:4c7de1e2f9fe 4 #include "structures.h"
JornD 61:4c7de1e2f9fe 5
JornD 49:a9ed4f4cdef7 6 //Functions
JornD 61:4c7de1e2f9fe 7 //--Controller functions; form "controller.cpp"; Complete
JornD 61:4c7de1e2f9fe 8 void InitializeControllers(void);
JornD 61:4c7de1e2f9fe 9 float Biquad(ControllerSettings& StrucName, MemoryIO& MemName, float X);
JornD 61:4c7de1e2f9fe 10
JornD 61:4c7de1e2f9fe 11 //--EMG Processing; from "emgprocessing.cpp";
JornD 61:4c7de1e2f9fe 12 float ProcessEMG(float X);
JornD 61:4c7de1e2f9fe 13
JornD 33:5e2e95c322da 14
JornD 43:9579a1afe9cb 15 #endif