forked from acco/chti23
33 lines
696 B
C
33 lines
696 B
C
|
#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);
|
|||
|
}
|
|||
|
}
|