#include "stm32l0xx.c"
#include <stdint.h>
#include "uart.c"
int main (void)
{
Serial.begin(115200);
uart2_tx_init();
while(1)
{
printf("hello STM32 Programmer:\n");
myDelay();
}
return 0;
}
#include "stm32l0xx.c"
#include <stdint.h>
#include "uart.c"
int main (void)
{
Serial.begin(115200);
uart2_tx_init();
while(1)
{
printf("hello STM32 Programmer:\n");
myDelay();
}
return 0;
}