#include "DriverJeuLaser.h" //#include "../Driver/DriverJeuLaser.inc" extern void CallbackSon(void); extern int PeriodeSonMicroSec; 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(); PWM_Init_ff(TIM3, 3, 720); GPIO_Configure(GPIOB, 0, OUTPUT, ALT_PPULL); Timer_1234_Init_ff(TIM4, 91*72); Active_IT_Debordement_Timer( TIM4, 2, CallbackSon ); //============================================================================ while (1) { } }