blob: 7371dd74924dac3c22fbc63a73b03cc110eb117d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
//This file defines functions prototypes related to PWM.
//
// Authors
// Siddhesh Wani
//
#ifndef __AVRPERIPHERALPWM_H__
#define __AVRPERIPHERALPWM_H__
#include <avr/io.h>
#include "types.h"
#ifdef __cplusplus
extern "C" {
#endif
//Function prototypes
uint8 u8AVRPWMSetups(uint8 timer, uint8 prescalar, uint8 waveform_mode, uint8 output_mode);
uint8 u8AVRPWMSetDutys(uint8 timer, uint8 duty);
#ifdef __cplusplus
} /* extern "C" */
#endif
#endif /* !__AVRPERIPHERALPWM_H__ */
|