Inside Visual Studio using a Visual GDB project I can see a tree structure in the solution explorer.
I have some questions about this:
- What is “external dependencies” how is it populated?
- Under Header files and Source file I can see Device-specific files, how do I add an entry to these?
Question 2. arose because in a simple HAL example for STM32F446RE I try to call __DAC1_CLK_ENABLE but get a build error because the implementation of the function can’t be found (actually it cant find __HAL_RCC_DAC1_CLK_ENABLE).
So I assume I must add some source file to the Device-specific files BUT where do I find the file? do I add it to the HAL or LL sub folders/
Any help is much appreciated!