forked from acco/chti23
37 lines
656 B
C
37 lines
656 B
C
|
|
|
|
#include "DriverJeuLaser.h"
|
|
# define PERIODE 6552
|
|
|
|
|
|
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,PERIODE);
|
|
Active_IT_Debordement_Timer(TIM4, 2, CallbackSon);
|
|
|
|
|
|
|
|
|
|
//============================================================================
|
|
|
|
|
|
while (1)
|
|
{
|
|
}
|
|
}
|
|
|
|
void CallbackSon(void){
|
|
static int i = 0;
|
|
|
|
|
|
}
|
|
|