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
228 B

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