12 lines
185 B
C
12 lines
185 B
C
|
|
#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
|
||
|
|
|
||
|
|
|