17 lines
269 B
C++
Executable File
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);
|
|
};
|
|
}
|