grpe_Magana_Brunetto/soft/PjtKEIL_StepDeb_1/Src/principal.c
Pascal Acco 742a3ac8ae projets
2023-03-14 16:21:55 +01:00

32 lines
696 B
C

#include "DriverJeuLaser.h"
extern void Delay_100ms(void);
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();
// configuration de PortB.1 (PB1) en sortie push-pull
GPIO_Configure(GPIOB, 1, OUTPUT, OUTPUT_PPULL);
//============================================================================
while (1)
{
Delay_100ms();
GPIOB_Set(1);
Delay_100ms();
GPIOB_Clear(1);
}
}