Important changes to forums and questions
All forums and questions are now archived. To start a new conversation or read the latest updates go to forums.mbed.com.
9 years, 4 months ago.
Missing files when exporting project using NUCLEO F303RE Board
Hi I am trying to exporting my project based upon the "NUCLEO F303RE" Board using GCC.
it looks like the project is missing all its LIBRAIES (object-files ) (xxx.o) files and the LINKER_SCRIPT Part of my Make file looks like this:
OBJECTS = ./main.o SYS_OBJECTS = INCLUDE_PATHS = -I. -I./mbed -I./mbed/TARGET_NUCLEO_F303RE -I./mbed/TARGET_NUCLEO_F303RE/TARGET_STM -I./mbed/TARGET_NUCLEO_F303RE/TARGET_STM/TARGET_STM32F3 -I./mbed/TARGET_NUCLEO_F303RE/TARGET_STM/TARGET_STM32F3/TARGET_NUCLEO_F303RE LIBRARY_PATHS = LIBRARIES = LINKER_SCRIPT = None
If i change the board to use NUCLEO F334R8 it works and looks like
Part of my Make file looks like this:
OBJECTS = ./main.o SYS_OBJECTS = ./mbed/TARGET_NUCLEO_F334R8/TOOLCHAIN_GCC_ARM/stm32f3xx_hal_nand.o ./mbed .......... (all of the needed object files :)........ ) LIBRARY_PATHS = -L./mbed/TARGET_NUCLEO_F334R8/TOOLCHAIN_GCC_ARM LIBRARIES = -lmbed LINKER_SCRIPT = ./mbed/TARGET_NUCLEO_F334R8/TOOLCHAIN_GCC_ARM/STM32F334x8.ld
Hope somebody is able to fix this :)
In the mean time I have manualy exported the Nucleo_blink_led for CoIDE and EM::Blocks
/media/uploads/rlangoy/nucleo_blink_led_coide_nucleo_f303re.zip
/media/uploads/rlangoy/nucleo_blink_led_emblocks_proj_nucleo_f303re.zip
I am also seeing this issue. I'd be curious to clone the mbed git repo and see if it does the same thing. Any chances of this being fixed. Seems to work on the NUCLEO_F411RE target for me but not on this target.
posted by Christian St. Cyr 09 Jun 2016