You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
136 lines
6.1 KiB
136 lines
6.1 KiB
/*
|
|
* Copyright (c) 2016-2020, Erich Styger
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
/* header file is included with -include compiler option
|
|
Instructions:
|
|
- Remove the 'Template_' from the name and place this file into your 'src' folder.
|
|
- Include it with the -include compiler option with: "${ProjDirPath}/source/IncludeMcuLibConfig.h"
|
|
- Add the following to the -I compiler option:
|
|
../McuLib
|
|
../McuLib/config
|
|
../McuLib/config/fonts
|
|
../McuLib/fonts
|
|
../McuLib/src
|
|
../McuLib/FreeRTOS/Source/include
|
|
../McuLib/FreeRTOS/Source/portable/GCC/ARM_CM4F
|
|
../McuLib/SEGGER_RTT
|
|
../McuLib/SEGGER_Sysview
|
|
../McuLib/TraceRecorder
|
|
../McuLib/TraceRecorder/config
|
|
../McuLib/TraceRecorder/include
|
|
../McuLib/TraceRecorder/streamports/Jlink_RTT/include
|
|
../McuLib/HD44780
|
|
../McuLib/FatFS
|
|
../McuLib/FatFS/source
|
|
|
|
if using a CDT Build variable pointing to the library, the following can be used instead:
|
|
${MCULIB}
|
|
${MCULIB}/config
|
|
${MCULIB}/config/fonts
|
|
${MCULIB}/fonts
|
|
${MCULIB}/src
|
|
${MCULIB}/FreeRTOS/Source/include
|
|
${MCULIB}/FreeRTOS/Source/portable/GCC/ARM_CM4F
|
|
${MCULIB}/SEGGER_RTT
|
|
${MCULIB}/SEGGER_Sysview
|
|
${MCULIB}/TraceRecorder
|
|
${MCULIB}/TraceRecorder/config
|
|
${MCULIB}/TraceRecorder/include
|
|
${MCULIB}/TraceRecorder/streamports/Jlink_RTT/include
|
|
${MCULIB}/HD44780
|
|
${MCULIB}/FatFS
|
|
${MCULIB}/FatFS/source
|
|
*/
|
|
|
|
/* For ESP32 targets:
|
|
- place the IncludeMcuLibConfig.h into the project 'config' folder
|
|
- copy the template file McuLib\ESP32_CMakeLists.txt and rename it to McuLib\CMakeLists.text
|
|
- add the following to your main CMakeLists.txt, between cmake_minimum_required() and the include():
|
|
list(APPEND EXTRA_COMPONENT_DIRS "../McuLib")
|
|
- add the following after the include():
|
|
add_compile_options(-I../config)
|
|
add_compile_options(-include "../config/IncludeMcuLibConfig.h")
|
|
|
|
- It should look similar to this:
|
|
cmake_minimum_required(VERSION 3.5)
|
|
|
|
list(APPEND EXTRA_COMPONENT_DIRS "../McuLib")
|
|
|
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
|
|
|
add_compile_options(-I../config)
|
|
add_compile_options(-include "../config/IncludeMcuLibConfig.h")
|
|
|
|
project(idf-eclipse)
|
|
|
|
*/
|
|
|
|
#ifndef INCLUDEMCULIBCONFIG_H_
|
|
#define INCLUDEMCULIBCONFIG_H_
|
|
|
|
/* ------------------- SDK/Library ---------------------------*/
|
|
#define McuLib_CONFIG_SDK_VERSION_USED McuLib_CONFIG_SDK_MCUXPRESSO_2_0
|
|
/* set the CPU. See McuLibConfig.h for all supported CPUs */
|
|
#if 0 /* example configuration for LPC845 */
|
|
#define McuLib_CONFIG_CPU_IS_LPC (1) /* LPC family */
|
|
#define McuLib_CONFIG_CORTEX_M (0) /*!< 0: Cortex-M0, 3: M3, 4: M4, 7: M7, 33: M33, -1 otherwise */
|
|
#define McuLib_CONFIG_CPU_VARIANT (McuLib_CONFIG_CPU_VARIANT_NXP_LPC845) /* for LPC need to specify the actual device */
|
|
#elif 0 /* example configuration for LPC55xx */
|
|
#define McuLib_CONFIG_CPU_IS_LPC (1) /* LPC family */
|
|
#define McuLib_CONFIG_CPU_IS_LPC55xx (1) /* LPC55xx */
|
|
#define McuLib_CONFIG_CORTEX_M (33) /*!< 0: Cortex-M0, 3: M3, 4: M4, 7: M7, 33: M33, -1 otherwise */
|
|
#define McuLib_CONFIG_CPU_VARIANT (McuLib_CONFIG_CPU_VARIANT_NXP_LPC55S69) /* for LPC need to specify the actual device */
|
|
#elif 1 /* example configuration for Kinetis K22 */
|
|
#define McuLib_CONFIG_CPU_IS_KINETIS (1) /* NXP Kinetis family */
|
|
#define McuLib_CONFIG_CORTEX_M (4) /*!< 0: Cortex-M0, 3: M3, 4: M4, 7: M7, 33: M33, -1 otherwise */
|
|
#elif 0 /* example configuration for i.MX RT */
|
|
#define McuLib_CONFIG_CPU_IS_IMXRT (1) /* i.MX RT family */
|
|
#define McuLib_CONFIG_CORTEX_M (7) /*!< 0: Cortex-M0, 3: M3, 4: M4, 7: M7, 33: M33, -1 otherwise */
|
|
#elif 0 /* ESP32 */
|
|
#define McuLib_CONFIG_CPU_IS_ARM_CORTEX_M (0) /* ESP32 is detected automatically */
|
|
#define configHEAP_SCHEME_IDENTIFICATION (0) /* ESP-IDF RTOS used */
|
|
#define McuCriticalSection_CONFIG_USE_RTOS_CRITICAL_SECTION (1) /* no native Extensa implementation yet */
|
|
#endif
|
|
#define McuULN2003_CONFIG_USE_ACCELERATION (1)
|
|
/* ------------------- McuRTT--------------------------------*/
|
|
#define McuRTT_CONFIG_RTT_UP_BUFFER_MODE (SEGGER_RTT_MODE_BLOCK_IF_FIFO_FULL)
|
|
#define McuRTT_CONFIG_RTT_BUFFER_SIZE_UP (1024)
|
|
#define McuRTT_CONFIG_RTT_BUFFER_SIZE_DOWN (150)
|
|
#define McuRTT_CONFIG_BLOCKING_SEND (1)
|
|
#define McuRTT_CONFIG_BLOCKING_SEND_TIMEOUT_MS (10)
|
|
#define McuRTT_CONFIG_BLOCKING_SEND_WAIT_MS (5)
|
|
/* Mcu log */
|
|
#define McuLog_CONFIG_IS_ENABLED (1)
|
|
#define McuLog_CONFIG_USE_RTT_CONSOLE (1)
|
|
#define McuLog_CONFIG_LOG_TIMESTAMP_DATE (0) // disable since time is not used
|
|
#define McuLog_CONFIG_LOG_TIMESTAMP_TIME (0)
|
|
/* Mcu Shell Uart*/
|
|
#define McuShell_CONFIG_PROJECT_NAME_STRING "SPLITFLAP"
|
|
#define McuLib_CONFIG_CPU_VARIANT McuLib_CONFIG_CPU_VARIANT_NXP_K22FN
|
|
#define McuShellUart_CONFIG_UART McuShellUart_CONFIG_UART_K22FN512_LPUART0_C3_C4
|
|
#define McuShellUart_CONFIG_UART_GET_CLOCK_FREQ_SELECT kCLOCK_PllFllSelClk
|
|
/* ------------------- RTOS ---------------------------*/
|
|
#define McuLib_CONFIG_SDK_USE_FREERTOS (1)
|
|
/* #define configUSE_SEGGER_SYSTEM_VIEWER_HOOKS (1) */
|
|
#define configTOTAL_HEAP_SIZE (24*1024)
|
|
#define configUSE_HEAP_SECTION_NAME (1)
|
|
#define configHEAP_SECTION_NAME_STRING ".bss.$SRAM_LOWER.FreeRTOS"
|
|
/* ------------------- FatFS ---------------------------*/
|
|
#define McuLib_CONFIG_USE_FAT_FS (0)
|
|
/* ---------------------------------------------------------------------------------------*/
|
|
/* McuFlash */
|
|
#define McuFlash_CONFIG_IS_ENABLED (1)
|
|
/* ---------------------------------------------------------------------------------------*/
|
|
/* MinINI */
|
|
#define McuMinINI_CONFIG_FS (McuMinINI_CONFIG_FS_TYPE_FLASH_FS)
|
|
#define McuMinINI_CONFIG_FLASH_NVM_ADDR_START ((0+512*1024)-McuMinINI_CONFIG_FLASH_NVM_BLOCK_SIZE)
|
|
#define McuMinINI_CONFIG_FLASH_NVM_BLOCK_SIZE (0x800)
|
|
#define McuMinINI_CONFIG_FLASH_NVM_MAX_DATA_SIZE (0x800) /* must be 64, 128, 256, ... */
|
|
/* RS485 */
|
|
#define McuUart485_CONFIG_USE_RS_485 (1)
|
|
#define McuUart485_CONFIG_UART_BAUDRATE (57600) /* lowering speed to reduce CRC errors */
|
|
|
|
#endif /* INCLUDEMCULIBCONFIG_H_ */
|
|
|