This repository has been archived on 2024-05-28. You can view files and clone it, but cannot push or open issues or pull requests.
2023-11-14 16:25:09 -05:00

17 lines
269 B
C++
Executable File

#include "bsp.h"
#include "prepherials.h"
int main() {
// delay_init();
system_init();
setup_prepherials();
pb.init(LED_BLUE_PIN);
while (1) {
pb.toggle(LED_BLUE_PIN);
// delay_ms(1000, true);
delay.ms(1000, true);
};
}