aboutsummaryrefslogtreecommitdiffstats
path: root/testhal/STM32/STM32F4xx/FSMC_SRAM/main.c
diff options
context:
space:
mode:
authorbarthess <barthess@yandex.ru>2015-04-28 10:10:09 +0300
committerbarthess <barthess@yandex.ru>2015-04-28 10:10:09 +0300
commit955b7901377d4bda1d45af12a9e5a8de54c427b6 (patch)
tree0b4eeed6115b7d38e6bcc62a7f3211d2397f10bd /testhal/STM32/STM32F4xx/FSMC_SRAM/main.c
parentadfa3f75e83bd7b033077cc1b12a3a0a612ce26a (diff)
downloadChibiOS-Contrib-955b7901377d4bda1d45af12a9e5a8de54c427b6.tar.gz
ChibiOS-Contrib-955b7901377d4bda1d45af12a9e5a8de54c427b6.tar.bz2
ChibiOS-Contrib-955b7901377d4bda1d45af12a9e5a8de54c427b6.zip
Improved metest. Added copyright notes.
Diffstat (limited to 'testhal/STM32/STM32F4xx/FSMC_SRAM/main.c')
-rw-r--r--testhal/STM32/STM32F4xx/FSMC_SRAM/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/testhal/STM32/STM32F4xx/FSMC_SRAM/main.c b/testhal/STM32/STM32F4xx/FSMC_SRAM/main.c
index 186450f..03d7f1d 100644
--- a/testhal/STM32/STM32F4xx/FSMC_SRAM/main.c
+++ b/testhal/STM32/STM32F4xx/FSMC_SRAM/main.c
@@ -41,7 +41,7 @@
******************************************************************************
*/
-static void mem_error_cb(memtest_t *memp, testtype_t e, size_t address);
+static void mem_error_cb(memtest_t *memp, testtype e, size_t address);
/*
******************************************************************************
@@ -110,7 +110,7 @@ static inline void green_led_on(void) {palSetPad(GPIOI, GPIOI_LED_G);}
static inline void green_led_off(void) {palClearPad(GPIOI, GPIOI_LED_G);}
static inline void green_led_toggle(void) {palTogglePad(GPIOI, GPIOI_LED_G);}
-void mem_error_cb(memtest_t *memp, testtype_t e, size_t address) {
+void mem_error_cb(memtest_t *memp, testtype e, size_t address) {
(void)memp;
(void)e;
(void)address;