commented out CMSIS and RTOS stuff for now.

This commit is contained in:
Jake Goodwin 2025-01-22 20:55:06 -08:00
parent 493b4dcf9a
commit 3e11d97b79
1 changed files with 4 additions and 4 deletions

View File

@ -64,16 +64,16 @@ set(HAL_DIR components/STM32F4xx_HAL_Driver)
# RTOS Setup # RTOS Setup
#------------------- #-------------------
# Path to FreeRTOS Kernel # Path to FreeRTOS Kernel
set(RTOS_DIR components/FreeRTOS-Kernel) #set(RTOS_DIR components/FreeRTOS-Kernel)
# Modify this to the path where your micrcontroller specific port is # Modify this to the path where your micrcontroller specific port is
set(RTOS_DIR_MCU ${RTOS_DIR}/portable/GCC/ARM_CM4F) # For cortex-m4 microcontroller #set(RTOS_DIR_MCU ${RTOS_DIR}/portable/GCC/ARM_CM4F) # For cortex-m4 microcontroller
set(RTOS_HEAP ${RTOS_DIR}/portable/MemMang/heap_4.c) # Select which heap implementation to use #set(RTOS_HEAP ${RTOS_DIR}/portable/MemMang/heap_4.c) # Select which heap implementation to use
#------------------- #-------------------
# CMSIS Setup # CMSIS Setup
#------------------- #-------------------
# Set the path to the CMSIS folder # Set the path to the CMSIS folder
set(CMSIS_DIR components/CMSIS/CMSIS) #set(CMSIS_DIR components/CMSIS/CMSIS)
################################################## ##################################################
# Advanced Section # Advanced Section