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

23 lines
287 B

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