diff options
author | utzig <utzig@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2013-07-16 23:08:40 +0000 |
---|---|---|
committer | utzig <utzig@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2013-07-16 23:08:40 +0000 |
commit | 06cc9ea04a04bd171f1ef7d10db02567447b59d0 (patch) | |
tree | a7ad9bebf15affd47486bb80563b466dc3e2d5c8 /os/hal/platforms/AVR/pwm_lld.h | |
parent | 558724c98961079775962d9877344204c384f5fc (diff) | |
download | ChibiOS-06cc9ea04a04bd171f1ef7d10db02567447b59d0.tar.gz ChibiOS-06cc9ea04a04bd171f1ef7d10db02567447b59d0.tar.bz2 ChibiOS-06cc9ea04a04bd171f1ef7d10db02567447b59d0.zip |
[AVR] Disable shared use of a single timer between multiple drivers
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@5979 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/platforms/AVR/pwm_lld.h')
-rw-r--r-- | os/hal/platforms/AVR/pwm_lld.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/os/hal/platforms/AVR/pwm_lld.h b/os/hal/platforms/AVR/pwm_lld.h index 51776bb21..36ab5cb73 100644 --- a/os/hal/platforms/AVR/pwm_lld.h +++ b/os/hal/platforms/AVR/pwm_lld.h @@ -32,6 +32,8 @@ #if HAL_USE_PWM || defined(__DOXYGEN__)
+#include "avr_timers.h"
+
/*===========================================================================*/
/* Driver constants. */
/*===========================================================================*/
|