We have installed the necessary tools in the first article of the series, Visual Studio Code for ARM with CMake #1 Installation. In this article, we will create a project structure that we will use throughout this series.
We will be working on a NUCLEO-G071RB development kit. Remember that this environment can be configured for any platform based on the ARM architecture.
Table of Contents
Defining a Project Structure
We will start by defining a project structure to organize the source files where our main application and controllers will be located.
We go to Visual Studio Code and create a series of folders to organize our source files.
Here is a description of what type of file each folder will contain.
Folders
In this folder we place the configuration files of our project, these files are read by Visual Studio Code to maintain the general configuration of the project and extensions.
In this folder all the resulting files are placed once the compilation process is finished, here our executable file .bin, .hex, .elf will be, it also contains configuration files for the CMake environment.
In this folder the header files corresponding to CMSIS for the ARM architecture are placed.
In this folder we place all the files corresponding to the device we use, such as the linker file, startup_stm32 boot file.
In this folder the drivers for the peripherals of our device are placed, this depends on the device, for this example we will use the STM32G071RB HAL library.
In this folder all external libraries such as an RTOS, Middleware or drivers are placed.
In this folder we place the main files of our application, for example main.c
However this project structure works for me, but it’s really up to you how you organize the files.
SDK for NUCLEO-G071RB kit
It’s time to collect the drivers for our MCU. For this series, we have chosen a very basic MCU because we want to keep it simple.
For the STM32 platform, it provides the HAL drivers, so we will use these drivers. To do this, we download the STM32G0 library from the ST website.
Here we have all the source files we need. Let’s start placing the files in the corresponding folders.
CMSIS
Inside the STM32G0 library, we find the necessary files for CMSIS. We add the corresponding header files for our G071RB.
Device
Here, we need to search within the STM32G0 library to find the specific files for our G071RB.
Inside the Device folder, we add the SVD files. These files contain a description of the MCU hardware at the peripheral level. They are important because our debugging tool needs this description to map the registers during debugging.
These files can be downloaded from the ST-svd page.
Drivers
We look for the STM32G0 drivers folder and place them inside this folder. In the compilation settings we will choose which drivers to add to the compilation process.
Lib
For now we will not put anything in this folder, later in future articles we will add support for SEGGER RTT and SystemView.
main
We will create our main input source file and main function.
main.c
Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
#include "main.h"
voidSystemClock_Config(void);
static GPIO_InitTypeDef GPIO_InitStruct = {0};
intmain(void)
{
HAL_Init();
SystemClock_Config();
__HAL_RCC_GPIOA_CLK_ENABLE();
GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP;
GPIO_InitStruct.Pull = GPIO_PULLUP;
GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_HIGH;
GPIO_InitStruct.Pin = GPIO_PIN_5;
HAL_GPIO_Init(GPIOA, &GPIO_InitStruct);
while(1)
{
HAL_GPIO_TogglePin(GPIOA, GPIO_PIN_5);
HAL_Delay(100);
}
return 0;
}
voidSystemClock_Config(void)
{
RCC_OscInitTypeDef RCC_OscInitStruct = {0};
RCC_ClkInitTypeDef RCC_ClkInitStruct = {0};
/** Configure the main internal regulator output voltage
Guillermo Garcia Thanks for reading! I am one of the editors of this site and I am committed to providing you with the best information possible by sharing my experience in embedded systems.
Deja una respuesta