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