Skip to content

Commit a395e7b

Browse files
Update CMakeLists.txt (#78)
Correct STM3F7xx to STM32F7xx in order to compile correctly <!--- Title --> Description ----------- <!--- Describe your changes in detail. --> The FREERTOS_PLUS_FAT_PORT option was wrong in CMakeList.txt missing a "2" in order to align to other part of code Test Steps ----------- <!-- Describe the steps to reproduce. --> Try to compile with option set(FREERTOS_PLUS_FAT_PORT "STM32F7XX" CACHE STRING "" FORCE) in originale file and you will have a error becaus you don't compile .c file Checklist: ---------- <!--- Go over all the following points, and put an `x` in all the boxes that apply. --> <!--- If you're unsure about any of these, don't hesitate to ask. We're here to help! --> - [X] I have tested my changes. No regression in existing tests. - [ ] I have modified and/or added unit-tests to cover the code changes in this Pull Request. Related Issue ----------- <!-- If any, please provide issue ID. --> By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.
1 parent c8ab060 commit a395e7b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

portable/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ target_sources( freertos_plus_fat_port
5454
STM32F4xx/stm32f4xx_hal_sd.h
5555
STM32F4xx/stm32f4xx_ll_sdmmc.c
5656
STM32F4xx/stm32f4xx_ll_sdmmc.h>
57-
$<$<STREQUAL:${FREERTOS_PLUS_FAT_PORT},STM3F7XX>:
57+
$<$<STREQUAL:${FREERTOS_PLUS_FAT_PORT},STM32F7XX>:
5858
STM32F7xx/ff_sddisk.c
5959
STM32F7xx/stm32f7xx_hal_sd.c
6060
STM32F7xx/stm32f7xx_hal_sd.h>

0 commit comments

Comments
 (0)