stm32f4/00-BasicBlinky/main.c

19 lines
292 B
C
Raw Permalink Normal View History

2012-10-30 18:18:16 +01:00
#include <ch.h>
#include <hal.h>
int main( void )
{
// Init ChibiOS stuff
halInit( );
chSysInit( );
// Blink that green light!
while ( 1 ) {
palSetPad( GPIOD , GPIOD_LED4 );
chThdSleepMilliseconds( 250 );
palClearPad( GPIOD , GPIOD_LED4 );
chThdSleepMilliseconds( 250 );
}
}