Home
last modified time | relevance | path

Searched +full:cmake +full:- +full:example (Results 1 – 7 of 7) sorted by relevance

/Kernel-v11.0.1/.github/workflows/
Dkernel-demos.yml1 name: FreeRTOS-Kernel Demos
5 WIN32-MSVC:
7 runs-on: windows-latest
9 - name: Checkout the FreeRTOS/FreeRTOS Repository
15 fetch-depth: 1
18 - name: Checkout Pull Request
23 - name: Add msbuild to PATH
24 uses: microsoft/setup-msbuild@v1.1
26 - name: Build WIN32-MSVC Demo
27 working-directory: FreeRTOS/Demo/WIN32-MSVC
[all …]
/Kernel-v11.0.1/examples/cmake_example/
DCMakeLists.txt3 project(example) project
7 # Add the freertos_config for FreeRTOS-Kernel
16 message(STATUS "Build FreeRTOS SMP example")
18 add_compile_options( -DconfigNUMBER_OF_CORES=2 -DconfigUSE_PASSIVE_IDLE_HOOK=0 )
21 # Select the heap port. values between 1-4 will pick a heap.
27 # Adding the FreeRTOS-Kernel subdirectory
28 add_subdirectory(${FREERTOS_KERNEL_PATH} FreeRTOS-Kernel)
33 # Per library opt-out of things that are warnings/errors.
38 # Other options are https://cmake.org/cmake/help/latest/variable/CMAKE_LANG_COMPILER_ID.html#variab…
41 # FreeRTOS | CMake
[all …]
/Kernel-v11.0.1/portable/IAR/RISC-V/
Dchip_extensions.cmake8 "Please specify it from top-level CMake file (example):\n"
10 " or from CMake command line option:\n"
11 " -DFREERTOS_RISCV_EXTENSION=RISCV_MTIME_CLINT_no_extensions\n"
/Kernel-v11.0.1/portable/GCC/RISC-V/
Dchip_extensions.cmake11 "Please specify it from top-level CMake file (example):\n"
13 " or from CMake command line option:\n"
14 " -DFREERTOS_RISCV_EXTENSION=RISCV_MTIME_CLINT_no_extensions\n"
/Kernel-v11.0.1/
DREADME.md1 …eRTOS-Kernel/actions/workflows/unit-tests.yml/badge.svg?branch=main&event=push)](https://github.co…
2 …(https://codecov.io/gh/FreeRTOS/FreeRTOS-Kernel/badge.svg?branch=main)](https://codecov.io/gh/Free…
9 repository, which contains pre-configured demo application projects under
12 The easiest way to use FreeRTOS is to start with one of the pre-configured demo
17 [FreeRTOS Kernel Quick Start Guide](https://www.FreeRTOS.org/FreeRTOS-quick-start-guide.html)
25 [the instructions here](.github/CONTRIBUTING.md#contributing-via-pull-request).
33 ## To consume FreeRTOS-Kernel
35 ### Consume with CMake
37 If using CMake, it is recommended to use this repository using FetchContent.
40 - Define the source and version/tag you want to use:
[all …]
DCMakeLists.txt9 # DEPRECATED: FREERTOS_CONFIG_FILE_DIRECTORY - but still supported if no freertos_config defined fo…
15 # heap implementation. If the option is not set, the cmake will use no heap
22 …message(FATAL_ERROR " freertos_config target not specified. Please specify a cmake target that de…
31 …message(WARNING " Using deprecated 'FREERTOS_CONFIG_FILE_DIRECTORY' - please update your project C…
44 …ssage(WARNING " FREERTOS_PORT is not set. Please specify it from top-level CMake file (example):\n"
46 " or from CMake command line option:\n"
47 " -DFREERTOS_PORT=GCC_ARM_CM4F\n"
50 " A_CUSTOM_PORT - Compiler: User Defined Target: User Defined\n"
51 " BCC_16BIT_DOS_FLSH186 - Compiler: BCC Target: 16 bit DOS Flsh186\n"
52 " BCC_16BIT_DOS_PC - Compiler: BCC Target: 16 bit DOS PC\n"
[all …]
DHistory.txt35 was last assigned to the task - which due to priority inheritance, may not
42 FreeRTOSConfig.h. We thank @mdnr-g for their contribution.
46 vTaskResume or vTaskResumeFromISR. We thank @Moral-Hao for their
49 FreeRTOS handlers for PendSV and SVCall interrupts on Cortex-M devices.
54 + Add CMake support to allow the application writer to select the RISC-V
56 + Add CMake support to allow the application writer to build an application
58 + Make taskYIELD available to unprivileged tasks for ARMv8-M ports.
59 + Update Cortex-M23 ports to not use PSPLIM_NS. We thank @urutva for their
61 + Update the SysTick setup code for ARMv8-M ports to first configure the clock
66 + Add the port-optimized task selection algorithm optionally available for
[all …]