forked from acco/chti23
32 lines
668 B
C
32 lines
668 B
C
|
|
#include "DriverJeuLaser.h"
|
|
|
|
|
|
extern short int LeSignal[];
|
|
extern int DFT_ModuleAuCarre( short int * Signal64ech, char k);
|
|
|
|
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 (int j=0; j<M ; j++) {
|
|
int test =DFT_ModuleAuCarre(&(LeSignal[0]), 17);
|
|
//}
|
|
|
|
|
|
while (1)
|
|
{
|
|
}
|
|
}
|
|
|