aboutsummaryrefslogtreecommitdiffstats
path: root/src/wiring/pwm.h
blob: 3ff440bc3736186215ff1bcd3005a2180b41b4b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef _PWM_H
#define _PWM_H

#ifdef __cplusplus
extern "C"{
#endif

#define PWM           GPIO_MODE_AF_OUTPUT_PP

void pwmWrite(uint8_t, uint16_t);

#ifdef __cplusplus
}
#endif


#endif