diff options
author | utzig <utzig@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2013-07-08 19:12:31 +0000 |
---|---|---|
committer | utzig <utzig@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2013-07-08 19:12:31 +0000 |
commit | 91c662973d904c7a0c99fea829801f95bd4db342 (patch) | |
tree | ce20552734db6cb638631954764fa0e5f134ece4 /os/hal | |
parent | 76d46cec817812902a5ac36436512c2c88f6a18e (diff) | |
download | ChibiOS-91c662973d904c7a0c99fea829801f95bd4db342.tar.gz ChibiOS-91c662973d904c7a0c99fea829801f95bd4db342.tar.bz2 ChibiOS-91c662973d904c7a0c99fea829801f95bd4db342.zip |
Fix PWM regtable conflict with ICU
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@5940 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal')
-rw-r--r-- | os/hal/platforms/AVR/pwm_lld.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/os/hal/platforms/AVR/pwm_lld.c b/os/hal/platforms/AVR/pwm_lld.c index c223d622a..db3a5adb9 100644 --- a/os/hal/platforms/AVR/pwm_lld.c +++ b/os/hal/platforms/AVR/pwm_lld.c @@ -49,7 +49,7 @@ typedef struct { volatile uint8_t *timsk; } timer_registers_t; -timer_registers_t regs_table[]= +static timer_registers_t regs_table[]= { #if AVR_PWM_USE_PWM1 || defined(__DOXYGEN__) #if defined(OCR1C) |