diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2015-11-29 08:20:40 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2015-11-29 08:20:40 +0000 |
commit | 5404d1ee8da67275b467d0ec4ce4ca9da8b98f27 (patch) | |
tree | ded331e9c20286a78e820d2c206836a183c84183 /testhal/STM32/STM32F7xx/IRQ_STORM/main.c | |
parent | 75d80cabde7e031b5929fa5e7b9b65da8446222a (diff) | |
download | ChibiOS-5404d1ee8da67275b467d0ec4ce4ca9da8b98f27.tar.gz ChibiOS-5404d1ee8da67275b467d0ec4ce4ca9da8b98f27.tar.bz2 ChibiOS-5404d1ee8da67275b467d0ec4ce4ca9da8b98f27.zip |
IRQ Storm for STM32F7.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@8548 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'testhal/STM32/STM32F7xx/IRQ_STORM/main.c')
-rw-r--r-- | testhal/STM32/STM32F7xx/IRQ_STORM/main.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/testhal/STM32/STM32F7xx/IRQ_STORM/main.c b/testhal/STM32/STM32F7xx/IRQ_STORM/main.c index a676086db..a8c456238 100644 --- a/testhal/STM32/STM32F7xx/IRQ_STORM/main.c +++ b/testhal/STM32/STM32F7xx/IRQ_STORM/main.c @@ -43,9 +43,9 @@ static const GPTConfig gpt3cfg = { * IRQ Storm configuration.
*/
static const irq_storm_config_t irq_storm_config = {
- (BaseSequentialStream *)&SD2,
- GPIOD,
- GPIOD_LED5,
+ (BaseSequentialStream *)&SD1,
+ GPIOI,
+ GPIOI_ARD_D13,
&GPTD4,
&GPTD3,
&gpt4cfg,
@@ -69,9 +69,10 @@ int main(void) { chSysInit();
/* Prepares the Serial driver 2.*/
- sdStart(&SD2, NULL); /* Default is 38400-8-N-1.*/
+ sdStart(&SD1, NULL); /* Default is 38400-8-N-1.*/
palSetPadMode(GPIOA, 2, PAL_MODE_ALTERNATE(7));
palSetPadMode(GPIOA, 3, PAL_MODE_ALTERNATE(7));
+ palSetLineMode(LINE_ARD_D13, PAL_MODE_OUTPUT_PUSHPULL);
/* Running the test.*/
irq_storm_execute(&irq_storm_config);
|