Import a thread project into a project to have only the necessary files.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2024-02-14 12:16 AM
Hello,
I've recently been using Thread application examples like "Thread_FTD_Coap_Multicast", but when I tried adding other features such as ADC, I encountered errors due to redundancy caused by too many files.
I'm wondering how to start a new clean project with STM32CubeMX and then incorporate the Thread protocol afterwards.
Have you ever done this? If so, do you have any suggestions?
Thank you.
Solved! Go to Solution.
- Labels:
-
STM32Cube MCU Packages
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2024-02-14 10:57 AM
Hello @Cadixal,
To create a new project dedicated for a Thread application you can use either STM32CubeMX tool or STM32CubeIDE both allowing an advanced configuration with integrated GUI feature. To set up a Thread project you have to follow the steps below :
- Activate HSEM
- Activate IPCC
- Activate RCC
- Activate RF ( Under Connectivity)
- Activate USART1 or LPUART
- Under Middleware ->STM32_WPAN-> Check THREAD and set up the configuration as follow :
- Set up the Clock configuration
- Set up project configuration under Project Manager by choosing the toolchain IDE -> STM32CubeIDE
- Generate the project and verify the project setting to be sure that all source path are included as follow :
You have now a clean project that includes Thread APIs ready to be used for your own application.
Best regards,
Ouadi
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2024-02-14 10:57 AM
Hello @Cadixal,
To create a new project dedicated for a Thread application you can use either STM32CubeMX tool or STM32CubeIDE both allowing an advanced configuration with integrated GUI feature. To set up a Thread project you have to follow the steps below :
- Activate HSEM
- Activate IPCC
- Activate RCC
- Activate RF ( Under Connectivity)
- Activate USART1 or LPUART
- Under Middleware ->STM32_WPAN-> Check THREAD and set up the configuration as follow :
- Set up the Clock configuration
- Set up project configuration under Project Manager by choosing the toolchain IDE -> STM32CubeIDE
- Generate the project and verify the project setting to be sure that all source path are included as follow :
You have now a clean project that includes Thread APIs ready to be used for your own application.
Best regards,
Ouadi
