diff options
author | siddhu8990 | 2015-12-17 14:48:36 +0530 |
---|---|---|
committer | siddhu8990 | 2015-12-23 11:26:29 +0530 |
commit | 329613eb48542f24bb9014a0a617b05199726e99 (patch) | |
tree | bf571563bb735fc2ccd9a300a952f8557667fd77 /src/c/hardware/avr/includes | |
parent | 96b51a5ded447676d493be9721e4480065a5ae7e (diff) | |
download | Scilab2C_fossee_old-329613eb48542f24bb9014a0a617b05199726e99.tar.gz Scilab2C_fossee_old-329613eb48542f24bb9014a0a617b05199726e99.tar.bz2 Scilab2C_fossee_old-329613eb48542f24bb9014a0a617b05199726e99.zip |
Code generation for Arduino changed. DC motor added to Arduino.
Diffstat (limited to 'src/c/hardware/avr/includes')
-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 0000000..80b29f3 --- /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__ */ |