grpe_Magana_Brunetto/soft/PjtKEIL_StepDeb_1/Src/principal.c

33 lines
696 B
C
Raw Normal View History

2023-03-14 16:21:55 +01:00
#include "DriverJeuLaser.h"
extern void Delay_100ms(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 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);
}
}