You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
KED/main.cpp

25 lines
278 B

#include"main.hpp"
#include"bsl/csl/interfaces/delay.hpp"
#include"stm32f0xx_csl.h"
int main(int argc, char *argv[])
{
Delay delay;
stmStart();
setMode(pinB3,output);
while(1)
{
set(pinB3,1);
delay.ms(100);
set(pinB3,0);
delay.ms(100);
}
return 1;
}