Initial commit

This commit is contained in:
2023-09-19 15:59:49 +02:00
commit bef0bade14
1860 changed files with 582828 additions and 0 deletions

View File

@ -0,0 +1,18 @@
#ifndef TRACE_CONFIG_H
#define TRACE_CONFIG_H
#include "stm32f7xx_hal.h" // "mcu/mcu.h" not working here!
extern "C" UART_HandleTypeDef huart1; // Defined in main.c
#define USE_PLATFORM_F7_DISCO_GCC_TRACE 1
#define TRACE_UART_NUMBER 0
#define TRACE_UART_HANDLE huart1
#define TRACE_UART_BAUD_RATE /* 115200, but given by STM32CubeMX tool configuration */
#define TRACE_UART_USE_TX_DMA false
#define TRACE_UART_CONSTRUCTOR_PARAMETERS TRACE_UART_NUMBER, &TRACE_UART_HANDLE, TRACE_UART_USE_TX_DMA
#define TRACE_ADD_CRLF_SEQU 1
#endif // TRACE_CONFIG_H

View File

@ -0,0 +1,6 @@
#ifndef HAL_UART_CONFIG_H
#define HAL_UART_CONFIG_H
#include "mcu/mcu.h"
#endif // HAL_UART_CONFIG_H

View File

@ -0,0 +1,10 @@
#ifndef XF_PORT_CONFIG_H
#define XF_PORT_CONFIG_H
/**
* Waring: Only one PORT define should be enabled at a time!
*/
#define PORT_IDF_QT 0
#define PORT_IDF_STM32 1
#endif // XF_PORT_CONFIG_H