grpC_Oussama_Boyu/soft/PjtKEIL_StepDFT/Src/principal.c

32 lines
660 B
C

#include "DriverJeuLaser.h"
#include "module_carre.h"
extern short LeSignal;
int main(void)
{ int real_number_test = 0;
// ===========================================================================
// ============= 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 k= 0; k < 64; ++k) {
real_number_test = DFT_ModuleAuCarre(&LeSignal, k);
}
while (1)
{
}
}