move to ccs based on 39cc590260f6d69837dd16740b7b8612e8935592

This commit is contained in:
2025-11-17 17:02:53 +08:00
commit 8acb95d566
20 changed files with 1169 additions and 0 deletions

11
3rd/pwm.h Normal file
View File

@@ -0,0 +1,11 @@
#ifndef __PWM_H
#define __PWM_H
#include <stdint.h>
void PWM_Channel1(uint16_t Compare);
void PWM_Channel2(uint16_t Compare);
void PWM_Channel3(uint16_t Compare);
#endif