From b1ccd2664747790f1418b526daeaaa1e2619408c Mon Sep 17 00:00:00 2001 From: Paul Bartell Date: Tue, 13 Sep 2022 15:30:55 -0700 Subject: [PATCH] portable-RP2040: Fix typo in README.md Replace "import" with "include" in cmake code sample. --- portable/ThirdParty/GCC/RP2040/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/portable/ThirdParty/GCC/RP2040/README.md b/portable/ThirdParty/GCC/RP2040/README.md index 5a0fe4d432..c50cb4e388 100644 --- a/portable/ThirdParty/GCC/RP2040/README.md +++ b/portable/ThirdParty/GCC/RP2040/README.md @@ -14,7 +14,7 @@ You can copy [FreeRTOS-Kernel-import.cmake](FreeRTOS-Kernel-import.cmake) into y add the following in your `CMakeLists.txt`: ```cmake -import(FreeRTOS_Kernel_import.cmake) +include(FreeRTOS_Kernel_import.cmake) ``` This will locate the FreeRTOS kernel if it is a direct sub-module of your project, or if you provide the @@ -39,4 +39,4 @@ Some additional `config` options are defined [here](include/rp2040_config.h) whi ## Known Limitations -- Tickless idle has not currently been tested, and is likely non-functional \ No newline at end of file +- Tickless idle has not currently been tested, and is likely non-functional