Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: HIDScope mbed-dsp mbed
Fork of P5-2 by
main.cpp
- Committer:
- DominiqueC
- Date:
- 2014-10-16
- Revision:
- 24:0573e4568e2c
- Parent:
- 23:07db8414fbe6
- Child:
- 25:a84afc4598fe
File content as of revision 24:0573e4568e2c:
/***************************************/
/* */
/* BRONCODE GROEP 5, MODULE 9, 2014 */
/* *****-THE SLAP-****** */
/* */
/* -Dominique Clevers */
/* -Rianne van Dommelen */
/* -Daan de Muinck Keizer */
/* -David den Houting */
/* -Marjolein Thijssen */
/***************************************/
#include "mbed.h"
#include "HIDScope.h"
#include "arm_math.h"
//Define objects
AnalogIn emg0(PTB0); //Biceps
AnalogIn emg1(PTB1); //Triceps
HIDScope scope(5);
arm_biquad_casd_df1_inst_f32 notch;
//constants for 50Hz notch
float notch_const[] = {0.9695312529087462, -0.0, 0.9695312529087462, 0.0, -0.9390625058174924};
//state values
float notch_states[4];
arm_biquad_casd_df1_inst_f32 highpass;
//constants for 5Hz highpass
//5float highpass_const[] = {0.8948577513857248, -1.7897155027714495, 0.8948577513857248, 1.7786300789392977, -0.8008009266036016};
//40float highpass_const[] = {0.39133577250176865, -0.7826715400353731, 0.39133577250176865, 0.36952737735124147, -0.19581571265583314};
float highpass_const[] = {0.638945525159022, -1.277891050318045, 0.638945525159022, 1.142980502539901, 0.412801598096189};
//state values
float highpass_states[4];
//constants for 80Hz lowpass
arm_biquad_casd_df1_inst_f32 lowpass;
float lowpass_const[] = {0.6389437261127493, 1.2778874522254986, 0.6389437261127493, 1.1429772843080919, 0.41279762014290533};
//state values
float lowpass_states[4];
void looper()
{
/*variable to store value in*/
uint16_t emg_value;
float filtered_emg;
float filtered_emg_notch;
float filtered_emg_notch_highpass;
float filtered_emg_abs;
float emg_value_f32;
float filtered_emg_lowpass;
/*put raw emg value both in red and in emg_value*/
emg_value = emg0.read_u16(); // read direct ADC result, converted to 16 bit integer (0..2^16 = 0..65536 = 0..3.3V)
emg_value_f32 = emg0.read();
//process emg
//arm_biquad_cascade_df1_f32(&highpass, &emg_value_f32, &filtered_emg, 1 );
//filtered_emg_abs = fabs(filtered_emg);
//arm_biquad_cascade_df1_f32(¬ch, &filtered_emg, &filtered_emg_notch, 1 );
//arm_biquad_cascade_df1_f32(&lowpass, &filtered_emg_notch, &filtered_emg_lowpass, 1 );
arm_biquad_cascade_df1_f32(¬ch, &emg_value_f32, &filtered_emg_notch, 1 );
arm_biquad_cascade_df1_f32(&highpass, &filtered_emg_notch, &filtered_emg_notch_highpass, 1 );
scope.set(0,emg_value_f32); //uint value
//scope.set(1,filtered_emg); //processed float
scope.set(1,filtered_emg_notch);
scope.set(2,filtered_emg_notch_highpass);
//scope.set(3,filtered_emg_abs);
//scope.set(4,filtered_emg_lowpass);
//scope.set(5,emg_value);
scope.send();
}
int main()
{
Ticker log_timer;
//set up filters. Use external array for constants
arm_biquad_cascade_df1_init_f32(¬ch,1 , notch_const, notch_states);
arm_biquad_cascade_df1_init_f32(&highpass,1 ,highpass_const,highpass_states);
arm_biquad_cascade_df1_init_f32(&lowpass,1 ,lowpass_const,lowpass_states);
log_timer.attach(looper, 0.005);
while(1) //Loop
{
/*Empty!*/
/*Everything is handled by the interrupt routine now!*/
}
}
