forked from acco/chti23
33 lines
674 B
C
33 lines
674 B
C
|
|
|
|
#include "DriverJeuLaser.h"
|
|
|
|
|
|
extern short int LeSignal2;
|
|
extern int DFT_ModuleAuCarre(short int* Signal64ech, char k);
|
|
|
|
int main(void)
|
|
{
|
|
|
|
int tab[64];
|
|
// ===========================================================================
|
|
// ============= 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(int i=0; i<64; i++){
|
|
tab[i] = DFT_ModuleAuCarre(&LeSignal2, i);
|
|
}
|
|
|
|
|
|
//============================================================================
|
|
|
|
|
|
while (1)
|
|
{
|
|
}
|
|
}
|
|
|