chti23/soft/PjtKEIL_StepDFT/Src/principal.c

30 lines
656 B
C

#include "DriverJeuLaser.h"
extern int DFT_ModuleAuCarre(short int * Signal64ech, char k);
extern int LeSignal[];
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();
//============================================================================
while (1)
{
DFT_ModuleAuCarre((short *)LeSignal ,1);
}
}