I am having trouble trying to build the ‘CORTEX_STM32F107_GCC_Rowley’ demo project using the rowley crossworks IDE. Whenever I build the project I get the following error:
Compiling flash.c
/home/…/FreeRTOSv7.0.2/Demo/CORTEX_STM32F107_GCC_Rowley/…/Common/Minimal/flash.c:71:22: fatal error: FreeRTOS.h: No such file or directory
I have not modified any of the source files or project properties.
It looks like an include path problem. Are you building on Windows? If not, then check the include paths only use forward slashes, and never a backslash.
I am building it on Linux (Kubuntu). You were right, some of the include paths used backslash instead of forward slashes, as well as a folder name spelled incorrectly.
I also had to comment out the functions sprintf and snprintf in printf-stdarg.c, as these were apparently already defined in a crossworks library file.
I should hopefully be able to test the build soon and see if the changes in the source file affects freeRTOS.
With the changes described above the project builds, but I seem to be getting no output when running the demo. I think this is because I commented out the functions sprintf and snprintf in printf-stdarg.c.
Has anyone else had this problem with the two functions?