20 lines
335 B
C++
Executable File
20 lines
335 B
C++
Executable File
#include "bsp.h"
|
|
|
|
#include "prepherials.h"
|
|
|
|
int main() {
|
|
// delay_init();
|
|
system_init();
|
|
setup_prepherials();
|
|
pb.init(LED_BLUE_PIN);
|
|
pa.init(9);
|
|
|
|
while (1) {
|
|
// pb.toggle(LED_BLUE_PIN);
|
|
pa.toggle(9);
|
|
// delay_ms(1000, true);
|
|
// delay.us(1, true);
|
|
delay_us(1,false);
|
|
};
|
|
}
|