diff options
author | barthess <barthess@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2011-12-07 12:23:33 +0000 |
---|---|---|
committer | barthess <barthess@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2011-12-07 12:23:33 +0000 |
commit | 6562e684cd3942eb0273a13bd6c8b7027a868745 (patch) | |
tree | 48f80ad8c56b84146360486aa070b72678e1f944 /os/hal/platforms | |
parent | 46d388fb246bbba56f75e15a0514376580c0c2fb (diff) | |
download | ChibiOS-6562e684cd3942eb0273a13bd6c8b7027a868745.tar.gz ChibiOS-6562e684cd3942eb0273a13bd6c8b7027a868745.tar.bz2 ChibiOS-6562e684cd3942eb0273a13bd6c8b7027a868745.zip |
GPT on F4x. Typo fixed.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/i2c_dev@3566 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/platforms')
-rw-r--r-- | os/hal/platforms/STM32/gpt_lld.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/os/hal/platforms/STM32/gpt_lld.c b/os/hal/platforms/STM32/gpt_lld.c index e40843ccb..34468ccc3 100644 --- a/os/hal/platforms/STM32/gpt_lld.c +++ b/os/hal/platforms/STM32/gpt_lld.c @@ -249,7 +249,7 @@ void gpt_lld_init(void) { #if STM32_GPT_USE_TIM8
/* Driver initialization.*/
- GPTD5.tim = STM32_TIM8;
+ GPTD8.tim = STM32_TIM8;
gptObjectInit(&GPTD8);
#endif
}
|