37 рядки
731 Б
C
37 рядки
731 Б
C
|
|
|
|
#include "DriverJeuLaser.h"
|
|
#include "GestionSon.h"
|
|
|
|
extern short Sortie_son;
|
|
|
|
|
|
|
|
|
|
|
|
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();
|
|
|
|
Timer_1234_Init_ff(TIM4, 65520000);
|
|
Active_IT_Debordement_Timer(TIM4, 2, GestionSon);
|
|
GPIO_Configure(GPIOB, 0, OUTPUT, ALT_PPULL);
|
|
PWM_Init_ff(TIM3, 3, PERIODE_PWM);
|
|
StartSon();
|
|
|
|
|
|
|
|
//============================================================================
|
|
|
|
|
|
while (1)
|
|
{
|
|
}
|
|
}
|
|
|