RTOS_MSPM0  1.1
ECE445M starter code
DFT16.h
1 // DFT16.h
2 // 16-point DFT
3 // 12-bit binary fixed point
4 
5 // fill x with input data
6 // point ReX and ImX to empty arrays
7 // call DFT16
8 // results in ReX and ImX
9 // units of ReX and ImX match units of x
10 void DFT16(int32_t x[16],int32_t ReX[16],int32_t ImX[16]);
11