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

18 lines
304 B
C++
Executable File

//
// Created by zong on 11/20/22.
//
#include "bsp.h"
#include "prepherials.h"
int main() {
system_init();
setup_prepherials();
pe.init(9, AF, 1); // PE9 ------> TIM1_CH1
tim1.init_default();
tim1.set_pwm(CH1, 8000, 8000);
tim1.enable_output(CH1);
while (1) {}
}