From 5404d1ee8da67275b467d0ec4ce4ca9da8b98f27 Mon Sep 17 00:00:00 2001 From: Giovanni Di Sirio Date: Sun, 29 Nov 2015 08:20:40 +0000 Subject: IRQ Storm for STM32F7. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@8548 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- testhal/STM32/STM32F7xx/IRQ_STORM/main.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'testhal/STM32/STM32F7xx/IRQ_STORM/main.c') 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); -- cgit v1.2.3