How to integrate two STM32CubeIDE demo projects into one?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2022-01-03 01:36 PM
I am working with the STM32F769I evaluation kit and I would like to integrate the CAN Networking demo and the FATFS SD Card demos into one project so that I can write CAN data to an SD Card. Each project has it's own includes and .ioc pin assignments. How can I integrate these two into one project to flash to my device? Eventually, I'd like to do this in a real-time Task on FreeRTOS.
- Labels:
-
CAN
-
FreeRTOS
-
SDIO-SDMMC
-
STM32CubeIDE
-
STM32F7 Series
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2022-01-03 01:44 PM
There is no automated "Combine two IOC files" or "Combine two projects" functionality available. You'll need to start with one, then add the pin assignments from the other and merge the code.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2022-01-03 01:46 PM
Thanks TDK. As for the includes, there are a ton and they are different between the two projects. Do you have any advice on how to merge the two efficiently?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2022-01-03 02:15 PM
You should be able to copy them within the IDE by dragging the folder(s) they're in, telling it to copy/duplicate files rather than simply link to them.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2022-01-03 02:16 PM
Thank you!