This commit is contained in:
2026-06-12 02:55:04 -07:00
commit 30406f4f49
2040 changed files with 571534 additions and 0 deletions

11
RTOS_Labs_common/DFT16.h Normal file
View File

@@ -0,0 +1,11 @@
// DFT16.h
// 16-point DFT
// 12-bit binary fixed point
// fill x with input data
// point ReX and ImX to empty arrays
// call DFT16
// results in ReX and ImX
// units of ReX and ImX match units of x
void DFT16(int32_t x[16],int32_t ReX[16],int32_t ImX[16]);