From 9b7696e58f3b006da9fdc60003f640197951681b Mon Sep 17 00:00:00 2001 From: gdisirio Date: Wed, 2 Sep 2015 13:56:57 +0000 Subject: STM32F7-specific LD rules file introduced. Code is accessed through the ITCM bus, constants are accessed through AXI bus. Added DMA-friendly region handling. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@8270 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- demos/STM32/RT-STM32F746G-DISCOVERY/chconf.h | 2 +- demos/STM32/RT-STM32F746G-DISCOVERY/main.c | 12 +++++++++--- 2 files changed, 10 insertions(+), 4 deletions(-) (limited to 'demos') diff --git a/demos/STM32/RT-STM32F746G-DISCOVERY/chconf.h b/demos/STM32/RT-STM32F746G-DISCOVERY/chconf.h index 0077dbe65..fe1c8d375 100644 --- a/demos/STM32/RT-STM32F746G-DISCOVERY/chconf.h +++ b/demos/STM32/RT-STM32F746G-DISCOVERY/chconf.h @@ -494,7 +494,7 @@ /* Port-specific settings (override port settings defaulted in chcore.h). */ /*===========================================================================*/ -#define CORTEX_VTOR_INIT 0x08000000U +#define CORTEX_VTOR_INIT 0x00200000U #endif /* _CHCONF_H_ */ diff --git a/demos/STM32/RT-STM32F746G-DISCOVERY/main.c b/demos/STM32/RT-STM32F746G-DISCOVERY/main.c index dabc687cb..c14bcf0cb 100644 --- a/demos/STM32/RT-STM32F746G-DISCOVERY/main.c +++ b/demos/STM32/RT-STM32F746G-DISCOVERY/main.c @@ -20,7 +20,7 @@ /* * This is a periodic thread that does absolutely nothing except flashing - * a LED attached to TP1. + * a LED. */ static THD_WORKING_AREA(waThread1, 128); static THD_FUNCTION(Thread1, arg) { @@ -28,9 +28,9 @@ static THD_FUNCTION(Thread1, arg) { (void)arg; chRegSetThreadName("blinker"); while (true) { - palSetPad(GPIOH, GPIOH_TP1); + palSetPad(GPIOI, GPIOI_ARD_D13); chThdSleepMilliseconds(500); - palClearPad(GPIOH, GPIOH_TP1); + palClearPad(GPIOI, GPIOI_ARD_D13); chThdSleepMilliseconds(500); } } @@ -50,6 +50,12 @@ int main(void) { halInit(); chSysInit(); + /* + * GPIOI1 is programmed as output (board LED). + */ + palClearPad(GPIOI, GPIOI_ARD_D13); + palSetPadMode(GPIOI, GPIOI_ARD_D13, PAL_MODE_OUTPUT_PUSHPULL); + /* * Activates the serial driver 1 using the driver default configuration. */ -- cgit v1.2.3