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

18 lines
229 B

#include"main.hpp"
#include "bsl/csl/interfaces/gpio.hpp"
int main(int argc, char *argv[])
{
Gpio gpio;
cppHook();
while(1)
{
LL_mDelay(50);
gpio.writePin(1,1);
LL_mDelay(50);
gpio.writePin(1,0);
}
return 1;
}