Capstone project files

Dependencies:   mbed-dsp mbed capstone_display_2

main.cpp

Committer:
ryanyuyu
Date:
2014-02-05
Revision:
1:4fe83f71b889
Parent:
0:3aae5d23d0db
Child:
2:8ae58834937f

File content as of revision 1:4fe83f71b889:

#include "mbed.h"
#include "arm_math.h"
#include "arm_fir_f32.c" //the full path is cmsis_dsp/FilteringFunctions/arm_fir_f32.c

DigitalOut myled(LED1);

int main() {
    //to initialize the filter stuff use the kind of form below (see line 104 in the arm_fir_f32.c file for documentation)
    //arm_fir_instance_f32 S = {numTaps, pState, pCoeffs};

    while(1) {
    }
}