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

19 lines
225 B

#include"main.hpp"
#include "bsl/csl/interfaces/pin.hpp"
int main(int argc, char *argv[])
{
Pin pin;
cppHook();
while(1)
{
LL_mDelay(500);
pin.write(true);
LL_mDelay(500);
pin.write(false);
}
return 1;
}