Home
last modified time | relevance | path

Searched +full:exclude +full:- +full:files (Results 1 – 8 of 8) sorted by relevance

/Kernel-v11.0.1/.github/workflows/
Dci.yml10 runs-on: ubuntu-20.04
12 - uses: actions/checkout@v3
13 - name: Check Formatting of FreeRTOS-Kernel Files
14 uses: FreeRTOS/CI-CD-Github-Actions/formatting@main
16 exclude-dirs: portable
18 spell-check:
19 runs-on: ubuntu-latest
21 - name: Clone This Repo
23 - name: Run spellings check
24 uses: FreeRTOS/CI-CD-Github-Actions/spellings@main
[all …]
Dformatting.yml1 name: Format Pull Request Files
8 bashPass: \033[32;1mPASSED -
9 bashInfo: \033[33;1mINFO -
10 bashFail: \033[31;1mFAILED -
19 runs-on: ubuntu-20.04
21 - name: Apply Formatting Fix
22 id: check-formatting
23 uses: FreeRTOS/CI-CD-Github-Actions/formatting-bot@main
25 exclude-dirs: portable
/Kernel-v11.0.1/examples/template_configuration/
DFreeRTOSConfig.h5 * SPDX-License-Identifier: MIT
8 * this software and associated documentation files (the "Software"), to deal in
56 /* configSYSTICK_CLOCK_HZ is an optional parameter for ARM Cortex-M ports only.
58 * By default ARM Cortex-M ports generate the RTOS tick interrupt from the
59 * Cortex-M SysTick timer. Most Cortex-M MCUs run the SysTick timer at the same
60 * frequency as the MCU itself - when that is the case configSYSTICK_CLOCK_HZ is
80 /* Set configUSE_PREEMPTION to 1 to use pre-emptive scheduling. Set
81 * configUSE_PREEMPTION to 0 to use co-operative scheduling.
82 * See https://www.freertos.org/single-core-amp-smp-rtos-scheduling.html. */
89 * https://freertos.org/single-core-amp-smp-rtos-scheduling.html. */
[all …]
/Kernel-v11.0.1/portable/GCC/MicroBlazeV8/
Dport_exceptions.c5 * SPDX-License-Identifier: MIT
8 * this software and associated documentation files (the "Software"), to deal in
53 #define portexR19_STACK_OFFSET -1
63 /* Exclude this entire file if the MicroBlaze is not configured to handle
79 * types. It is called from vPortExceptionHandlerEntry() - which is itself defined
84 /*-----------------------------------------------------------*/
101 /*-----------------------------------------------------------*/
160 … xRegisterDump.ulPC = xRegisterDump.ulR17_return_address_from_exceptions - portexINSTRUCTION_SIZE; in vPortExceptionHandler()
174 * library exception header files. */ in vPortExceptionHandler()
225 /*-----------------------------------------------------------*/
[all …]
/Kernel-v11.0.1/portable/GCC/MicroBlazeV9/
Dport_exceptions.c5 * SPDX-License-Identifier: MIT
8 * this software and associated documentation files (the "Software"), to deal in
53 #define portexR19_STACK_OFFSET -1
63 /* Exclude this entire file if the MicroBlaze is not configured to handle
79 * types. It is called from vPortExceptionHandlerEntry() - which is itself defined
84 /*-----------------------------------------------------------*/
101 /*-----------------------------------------------------------*/
160 … xRegisterDump.ulPC = xRegisterDump.ulR17_return_address_from_exceptions - portexINSTRUCTION_SIZE; in vPortExceptionHandler()
174 * library exception header files. */ in vPortExceptionHandler()
225 /*-----------------------------------------------------------*/
[all …]
/Kernel-v11.0.1/examples/coverity/
DFreeRTOSConfig.h5 * SPDX-License-Identifier: MIT
8 * this software and associated documentation files (the "Software"), to deal in
65 #define configTIMER_TASK_PRIORITY ( configMAX_PRIORITIES - 1U )
108 /* Definitions that include or exclude functionality. *************************/
/Kernel-v11.0.1/
DCMakeLists.txt9 # DEPRECATED: FREERTOS_CONFIG_FILE_DIRECTORY - but still supported if no freertos_config defined fo…
18 …onfig` target defines the path to FreeRTOSConfig.h and optionally other freertos based config files
31 …message(WARNING " Using deprecated 'FREERTOS_CONFIG_FILE_DIRECTORY' - please update your project C…
44 …message(WARNING " FREERTOS_PORT is not set. Please specify it from top-level CMake file (example):…
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"
53 " CCS_ARM_CM3 - Compiler: CCS Target: ARM Cortex-M3\n"
54 … " CCS_ARM_CM4F - Compiler: CCS Target: ARM Cortex-M4 with FPU\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
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
67 ARMv7-M ports to the ARMv8-M ports. We thank @jefftenney for their
[all …]