##// END OF EJS Templates
sync
sync

File last commit:

r44:5f50f7fe4b06 dev_alexis
r45:e203e69902ca dev_alexis
Show More
main.c
43 lines | 628 B | text/x-c | CLexer
#include <stdio.h>
#include <fat32.h>
#include <gpio.h>
#include <uart.h>
#include <stm32f4xx.h>
#include <bsp.h>
#include <core.h>
extern streamdevice* __opnfiles__[];
int main()
{
while(1)
{
gpioset(LED1);
gpioclr(LED2);
gpioclr(LED1);
gpioset(LED2);
printf("Hello\n\r");
}
printf("hello world\n\r");
return 0;
}
void USART3_IRQHandler(void)
{
while(1)
{
for(volatile int i=0;i<1024*2048;i++);
gpioset(PD12);
gpioclr(PD14);
for(volatile int i=0;i<1024*2048;i++);
gpioclr(PD12);
gpioset(PD14);
}
}