STM32F40G_eval
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2013-04-15 8:31 AM
STM32F40G-Eval
Hi, Am having this error, &sharperror ''Please select first the Evaluation board used in your application (in Project Options)'' i commented /* &sharpdefine STM32F427X */ in STM32F44XX.h but i still have this error , how can i fix it. Thanks #understand-your-tools- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2013-04-15 6:05 PM
Yeah, I'm just working with the cards as dealt, I'm just glad I don't have to support projects concurrently in 4-6 different tool chains.
Up vote any posts that you find helpful, it shows what's working..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2013-04-16 1:22 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2013-04-16 1:28 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2013-04-16 1:46 AM
Because you probably omitted to add the path to the respective includes to the include search path in the project settings. Eclipse has a nice GUI for that.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2013-04-16 1:57 AM
i went to settings -> arm sourcey linux GCC C compiler ->Directories
and i added this librairies: ''${workspace_loc:/${ProjName}/librarie/CMSIS/Include}'' ''${workspace_loc:/${ProjName}/librarie/STM3240_41_G_EVAL}'' ''${workspace_loc:/${ProjName}/librarie/Common}'' ''${workspace_loc:/${ProjName}/librarie/Device/ST/STM32F4xx/Include}'' ''${workspace_loc:/${ProjName}/librarie/STM32F4xx_StdPeriph_Driver/inc}'' ''${workspace_loc:/${ProjName}/librarie/STM32F4xx_StdPeriph_Driver/src}'' ''${workspace_loc:/${ProjName}/src}'' Isn't like that please?- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2013-04-16 2:10 AM
In theory, yes.
The following paths are the locations where the std. peripheral drivers (and headers) reside. ... /STM32F4xx_StdPeriph_Driver/inc .../STM32F4xx_StdPeriph_Driver/src''${workspace_loc:/${ProjName}/librarie/STM32F4xx_StdPeriph_Driver/inc}''
''${workspace_loc:/${ProjName}/librarie/STM32F4xx_StdPeriph_Driver/src}''
That looks a little suspicious. Is the path name really ''librarie'' ? And finally, Eclipse generates a full build output, always to a build log file, and to an output console if one is open. Check this output, if the expanded macros and path definitions match your actual path. And if you use Linux, be aware that Linux path/file name are case-sensitive.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2013-04-16 2:17 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2013-04-16 2:28 AM
I verified the subdir.mk file of debug and the path match my actual paths
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2013-04-16 2:53 AM
It is always telling me that the GPIO and RCC could not be resolved, it is workin only when i add in main.c those two includes
# include ''stm32f4xx_gpio.h'' # include ''stm32f4xx_rcc.h'' What is wrong ?- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2013-04-16 5:46 AM
