diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2017-05-27 14:52:16 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2017-05-27 14:52:16 +0000 |
commit | dd4239960c73242b31d18571e6a66d9dd229b4cc (patch) | |
tree | bdcd2f3d14a45ab231682dfd1fb9c8815ee948a3 | |
parent | f269531a409d8f757a1e98fddf66142a0d331040 (diff) | |
download | ChibiOS-dd4239960c73242b31d18571e6a66d9dd229b4cc.tar.gz ChibiOS-dd4239960c73242b31d18571e6a66d9dd229b4cc.tar.bz2 ChibiOS-dd4239960c73242b31d18571e6a66d9dd229b4cc.zip |
Fixed bug #839.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10204 35acf78f-673a-0410-8e92-d51de3d6d3f4
-rw-r--r-- | readme.txt | 2 | ||||
-rw-r--r-- | testhal/STM32/STM32F3xx/EXT/main.c | 11 |
2 files changed, 13 insertions, 0 deletions
diff --git a/readme.txt b/readme.txt index 011269dfd..e8ed89bfa 100644 --- a/readme.txt +++ b/readme.txt @@ -161,6 +161,8 @@ - RT: Merged RT4.
- NIL: Merged NIL2.
- NIL: Added STM32F7 demo.
+- HAL: Fixed invalid number of elements in STM32F3xx EXT demo (bug #839)
+ (backported to 16.1.9).
- HAL: Fixed dependency to kernel in uart lld (v1) (bug #838)(backported
to 16.1.9).
- HAL: Fixed STM32 OTGv1 number of endpoints (bug #833)(backported to 16.1.8).
diff --git a/testhal/STM32/STM32F3xx/EXT/main.c b/testhal/STM32/STM32F3xx/EXT/main.c index 8ae382ca4..cce029a4a 100644 --- a/testhal/STM32/STM32F3xx/EXT/main.c +++ b/testhal/STM32/STM32F3xx/EXT/main.c @@ -65,6 +65,17 @@ static const EXTConfig extcfg = { {EXT_CH_MODE_DISABLED, NULL},
{EXT_CH_MODE_DISABLED, NULL},
{EXT_CH_MODE_DISABLED, NULL},
+ {EXT_CH_MODE_DISABLED, NULL},
+ {EXT_CH_MODE_DISABLED, NULL},
+ {EXT_CH_MODE_DISABLED, NULL},
+ {EXT_CH_MODE_DISABLED, NULL},
+ {EXT_CH_MODE_DISABLED, NULL},
+ {EXT_CH_MODE_DISABLED, NULL},
+ {EXT_CH_MODE_DISABLED, NULL},
+ {EXT_CH_MODE_DISABLED, NULL},
+ {EXT_CH_MODE_DISABLED, NULL},
+ {EXT_CH_MODE_DISABLED, NULL},
+ {EXT_CH_MODE_DISABLED, NULL},
{EXT_CH_MODE_DISABLED, NULL}
}
};
|