Mercurial > ecos
changeset 3030:32c8a1b0fef9
* include/plf_io.h: Fix determination when CYGHWR_HAL_LM3S_ADC0_CHAN
should be 8. Patch from Anatoly Sokolov. [ Bugzilla 1001222 ]
| author | jld |
|---|---|
| date | Wed, 04 May 2011 21:01:02 +0000 |
| parents | 9aec6a8ff9b9 |
| children | fac7912b6449 |
| files | packages/hal/cortexm/lm3s/lm3s8xx/current/ChangeLog packages/hal/cortexm/lm3s/lm3s8xx/current/include/plf_io.h |
| diffstat | 2 files changed, 7 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/packages/hal/cortexm/lm3s/lm3s8xx/current/ChangeLog +++ b/packages/hal/cortexm/lm3s/lm3s8xx/current/ChangeLog @@ -1,3 +1,8 @@ +2011-05-04 John Dallaway <john@dallaway.org.uk> + + * include/plf_io.h: Fix determination when CYGHWR_HAL_LM3S_ADC0_CHAN + should be 8. Patch from Anatoly Sokolov. [ Bugzilla 1001222 ] + 2011-01-18 Christophe Coutand <ccoutand@stmi.com> * cdl/hal_cortexm_lm3s8xx.cdl:
--- a/packages/hal/cortexm/lm3s/lm3s8xx/current/include/plf_io.h +++ b/packages/hal/cortexm/lm3s/lm3s8xx/current/include/plf_io.h @@ -94,8 +94,8 @@ #elif defined(CYGHWR_HAL_CORTEXM_LM3S8XX_LM3S817) || \ defined(CYGHWR_HAL_CORTEXM_LM3S8XX_LM3S818) #define CYGHWR_HAL_LM3S_ADC0_CHAN 6 -#elif defined(CYGHWR_HAL_CORTEXM_CORTEXM_LM3S828) || \ - defined(CYGHWR_HAL_CORTEXM_CORTEXM_LM3S808) +#elif defined(CYGHWR_HAL_CORTEXM_LM3S8XX_LM3S828) || \ + defined(CYGHWR_HAL_CORTEXM_LM3S8XX_LM3S808) #define CYGHWR_HAL_LM3S_ADC0_CHAN 8 #endif
