grpe_Magana_Brunetto/soft/PjtKEIL_StepDeb_2/Src/principal.c

62 lines
1.1 KiB
C
Raw Normal View History

2023-03-14 16:21:55 +01:00
#include "DriverJeuLaser.h"
void timer_callback(void);
int main(void)
{
// ===========================================================================
// ============= INIT PERIPH (faites qu'une seule fois) =====================
// ===========================================================================
// Apr<70>s ex<65>cution : le coeur CPU est clock<63> <20> 72MHz ainsi que tous les timers
CLOCK_Configure();
// configuration du Timer 4 en d<>bordement 100ms
//** Placez votre code l<> ** //
// Activation des interruptions issues du Timer 4
// Association de la fonction <20> ex<65>cuter lors de l'interruption : timer_callback
// cette fonction (si <20>crite en ASM) doit <20>tre conforme <20> l'AAPCS
//** Placez votre code l<> ** //
// configuration de PortB.1 (PB1) en sortie push-pull
GPIO_Configure(GPIOB, 1, OUTPUT, OUTPUT_PPULL);
//============================================================================
while (1)
{
}
}
char FlagCligno;
void timer_callback(void)
{
if (FlagCligno==1)
{
FlagCligno=0;
GPIOB_Set(1);
}
else
{
FlagCligno=1;
GPIOB_Clear(1);
}
}