forked from acco/chti23
29 lines
674 B
C
29 lines
674 B
C
|
|
|
|
#include "DriverJeuLaser.h"
|
|
extern short int LeSignal[];
|
|
extern int DFT_ModuleAuCarre( short int * Signal64ech, char k) ;
|
|
int Dft_x[64];
|
|
int main(void)
|
|
{
|
|
|
|
// ===========================================================================
|
|
// ============= INIT PERIPH (faites qu'une seule fois) =====================
|
|
// ===========================================================================
|
|
|
|
// Après exécution : le coeur CPU est clocké à 72MHz ainsi que tous les timers
|
|
CLOCK_Configure();
|
|
|
|
|
|
for (char k=0;k<64;k++){
|
|
Dft_x[k]=DFT_ModuleAuCarre(&LeSignal[0],k);
|
|
}
|
|
|
|
//============================================================================
|
|
|
|
|
|
while (1)
|
|
{
|
|
}
|
|
}
|
|
|