Home
last modified time | relevance | path

Searched +full:release +full:- +full:requirements (Results 1 – 5 of 5) sorted by relevance

/Kernel-v11.1.0/.github/workflows/
Dauto-release.yml1 name: Kernel-Auto-Release
15 description: "Version String for task.h on main branch (leave empty to leave as-is)."
20 release-packager:
21 name: Release Packager
22 runs-on: ubuntu-latest
25 - name: Tool Setup
26 uses: actions/setup-python@v2
32 # Currently FreeRTOS/.github/scripts houses the release script. Download it for upcoming usage
33 - name: Checkout FreeRTOS Release Tools
39 # Simpler git auth if we use checkout action and forward the repo to release script
[all …]
/Kernel-v11.1.0/portable/ThirdParty/XCC/Xtensa/
Dreadme_xtensa.txt8 ------------
17 Xtensa Configuration Requirements and Restrictions
18 --------------------------------------------------
23 requirements. You must use Xtensa Tools to compile and link FreeRTOS and
26 NOTE: It may be possible to build and run this with the open-source
27 xtensa-linux tools provided you have the correct overlay for your Xtensa
33 thread-safety on a per task basis (for use in tasks only, not interrupt
48 - Timer interrupt option with at least one interruptible timer.
49 - Interrupt option (implied by the timer interrupt option).
50 - Exception Architecture 2 (XEA2). Please note that XEA1 is NOT supported.
[all …]
/Kernel-v11.1.0/
DHistory.txt5 + Add ARMv7-R port with Memory Protection Unit (MPU) support.
6 + Add Memory Protection Unit (MPU) support to the Cortex-M0 port.
8 buffer when a task reads from a non-empty buffer:
9 - The task reading from a non-empty stream buffer returns immediately
11 - The task reading from a non-empty steam batching buffer blocks until the
37 + Add 64-bit support to the FreeRTOS Windows Simulator port. We thank @watsk
39 + Add support for 64-bit Microblaze processor to the MicroblazeV9 port. We
43 compilers. We thank @Forty-Bot for their contribution.
54 POSIX timers to address issues with signal handling in non-FreeRTOS
56 + Update ARM_TFM port to support TF-Mv2.0.0 release of trusted-firmware-m.
[all …]
Dtasks.c5 * SPDX-License-Identifier: MIT
44 /* The default definitions are only available for non-MPU ports. The
45 * reason is that the stack alignment requirements vary for different
89 if( pxCurrentTCB->uxPriority < ( pxTCB )->uxPriority ) \
102 …#define taskYIELD_TASK_CORE_IF_USING_PREEMPTION( pxTCB ) prvYieldCore( ( pxTCB )->xTaskRunState…
175 /*-----------------------------------------------------------*/
186 --uxTopPriority; \
200 /*-----------------------------------------------------------*/
217 /*-----------------------------------------------------------*/
229 /*-----------------------------------------------------------*/
[all …]
/Kernel-v11.1.0/include/
Dtask.h5 * SPDX-License-Identifier: MIT
39 /* *INDENT-OFF* */
43 /* *INDENT-ON* */
45 /*-----------------------------------------------------------
47 *----------------------------------------------------------*/
51 * after the numbered release.
168 …defined by the run time stats clock. See https://www.FreeRTOS.org/rtos-run-time-stats.html. Only…
183 … or a context switch pended since portSUPPRESS_TICKS_AND_SLEEP() was called - abort entering a sle…
203 #define tskNO_AFFINITY ( ( UBaseType_t ) -1 )
283 /*-----------------------------------------------------------
[all …]