diff options
author | siddhu8990 | 2015-12-17 14:48:36 +0530 |
---|---|---|
committer | siddhu8990 | 2015-12-17 14:48:36 +0530 |
commit | 4e3eef82b0aa598761e087925fabe835496ab3bc (patch) | |
tree | 5b046acee2453c83fc1d776221373c3992147e7a /src/c/hardware/avr/includes/AVRPeripheralPWM.h | |
parent | 96b51a5ded447676d493be9721e4480065a5ae7e (diff) | |
download | scilab2c-4e3eef82b0aa598761e087925fabe835496ab3bc.tar.gz scilab2c-4e3eef82b0aa598761e087925fabe835496ab3bc.tar.bz2 scilab2c-4e3eef82b0aa598761e087925fabe835496ab3bc.zip |
Code generation for Arduino changed. DC motor added to Arduino
Diffstat (limited to 'src/c/hardware/avr/includes/AVRPeripheralPWM.h')
-rw-r--r-- | src/c/hardware/avr/includes/AVRPeripheralPWM.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/c/hardware/avr/includes/AVRPeripheralPWM.h b/src/c/hardware/avr/includes/AVRPeripheralPWM.h new file mode 100644 index 00000000..80b29f3a --- /dev/null +++ b/src/c/hardware/avr/includes/AVRPeripheralPWM.h @@ -0,0 +1,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 u8AVRPWMSetDuty(uint8 timer, uint8 duty); + + +#ifdef __cplusplus +} /* extern "C" */ +#endif + +#endif /* !__AVRPERIPHERALPWM_H__ */ |