Home
last modified time | relevance | path

Searched full:name (Results 1 – 25 of 79) sorted by relevance

1234

/Kernel-v11.0.1/.github/workflows/
Dkernel-demos.yml1 name: FreeRTOS-Kernel Demos
6 name: WIN32 MSVC
9 - name: Checkout the FreeRTOS/FreeRTOS Repository
18 - name: Checkout Pull Request
23 - name: Add msbuild to PATH
26 - name: Build WIN32-MSVC Demo
30 - name: Build WIN32-MSVC-Static-Allocation-Only Demo
35 name: WIN32 MingW
38 - name: Checkout the FreeRTOS/FreeRTOS Repository
47 - name: Checkout Pull Request
[all …]
Dunit-tests.yml1 name: CMock Unit Tests
8 - name: Checkout Parent Repository
17 - name: Checkout Pull Request
22 - name: Setup Python
27 - name: Install packages
30 - name: Run Unit Tests with ENABLE_SANITIZER=1
34 - name: Run Unit Tests for coverage
39 - name: Upload coverage to Codecov
47 - name: Archive code coverage data
50 name: coverage-data
[all …]
Dauto-release.yml1 name: Kernel-Auto-Release
21 name: Release Packager
25 - name: Tool Setup
33 - name: Checkout FreeRTOS Release Tools
40 - name: Checkout FreeRTOS Kernel
46 - name: Configure git identity
48 git config --global user.name ${{ github.actor }}
51 - name: create a new branch that references commit id
57 - name: Update source files with version info
66 - name : Update version number in manifest.yml
[all …]
Dci.yml1 name: CI Checks
13 - name: Check Formatting of FreeRTOS-Kernel Files
21 - name: Clone This Repo
23 - name: Run spellings check
32 - name: Clone This Repo
34 - name: Link Verification
45 - name: Run manifest verifier
Dkernel-checks.yml1 name: Kernel-Checker
7 name: FreeRTOS Kernel Header Checks
11 - name: Tool Setup
17 - name: Checkout FreeRTOS Tools
26 - name: Checkout Pull Request
32 - name: Collecting changed files
44 name: ${{ env.stepName }}
Dgit-secrets.yml1 name: git-secrets Check
13 - name: Checkout awslabs/git-secrets
19 - name: Install git-secrets
21 - name: Run git-secrets
Dformatting.yml1 name: Format Pull Request Files
15 name: Run Formatting Check
21 - name: Apply Formatting Fix
Dcoverity_scan.yml1 name: Coverity Scan
18 name: Coverity Scan
21 - name: Checkout the Repository
/Kernel-v11.0.1/include/
DStackMacros.h31 …rning The name of this file has changed to stack_macros.h. Please update your code accordingly. …
Dprojdefs.h39 * overridden by a macro of the same name defined in FreeRTOSConfig.h in case the
46 * overridden by a macro of the same name defined in FreeRTOSConfig.h in case the
112 #define pdFREERTOS_ERRNO_ENAMETOOLONG 91 /* File or path name too long */
Dtask.h163 …const char * pcTaskName; /* A pointer to the task's name. This value will be…
322 * @param pcName A descriptive name for the task. This is mainly used to
367 * xTaskCreate( vTaskCode, "NAME", STACK_SIZE, &ucParameterToPass, tskIDLE_PRIORITY, &xHandle );
426 * @param pcName A descriptive name for the task. This is mainly used to
491 * "NAME", // Text name for the task.
563 * "ATask", // pcName - just a text name for the task to assist debugging.
657 * "ATask", // pcName - just a text name for the task to assist debugging.
792 * xTaskCreate( vTaskCode, "NAME", STACK_SIZE, NULL, tskIDLE_PRIORITY, &xHandle );
992 * xTaskCreate( vTaskCode, "NAME", STACK_SIZE, NULL, tskIDLE_PRIORITY, &xHandle );
1121 * // Obtain the handle of a task from its name.
[all …]
Dtimers.h116 * @param pcTimerName A text name that is assigned to the timer. This is done
118 * by its handle, and never by its name.
193 …* xTimers[ x ] = xTimerCreate( "Timer", // Just a text name, not used by th…
262 * @param pcTimerName A text name that is assigned to the timer. This is done
264 * by its handle, and never by its name.
336 …* xTimer = xTimerCreateStatic( "T1", // Text name for the task. Helps debugging o…
760 …* xBacklightTimer = xTimerCreate( "BacklightTimer", // Just a text name, not used by…
1248 * Returns the name that was assigned to a timer when the timer was created.
1252 * @return The name assigned to the timer specified by the xTimer parameter.
Ddeprecated_definitions.h214 /* A short file name has to be used in place of the normal
223 /* A short file name has to be used in place of the normal
/Kernel-v11.0.1/portable/ThirdParty/XCC/Xtensa/
Dxtensa_context.h67 #define STRUCT_FIELD( ctype, size, asname, name ) asname :.space size argument
68 #define STRUCT_AFIELD( ctype, size, asname, name, n ) asname :.space( size ) *( n ) argument
74 #define STRUCT_FIELD( ctype, size, asname, name ) ctype name; argument
75 #define STRUCT_AFIELD( ctype, size, asname, name, n ) ctype name[ n ]; argument
/Kernel-v11.0.1/
Dmanifest.yml1 name : "FreeRTOS-Kernel"
DHistory.txt494 ulTaskNotifyTakeIndexed macro compiling, and the name space clash in the
651 previously a name had to be provided.
660 + Reverted a few structure name changes that broke several kernel aware
936 from the task's name. xTaskGetTaskHandle() uses multiple string compare
940 + Added the pcQueueGetQueueName() API function, which obtains the name of
1132 overwrite the task's name).
1161 line up correctly even where task name lengths vary greatly.
1547 pre-processor macro for backward compatibility with the previous name.
1702 + Reverted the change in the name of the uxTaskNumber variable made in
1727 + Renamed directories that included "CCS4" in their name to remove the '4'
[all …]
Dcspell.config.yaml19 - name: freertos-words
/Kernel-v11.0.1/.github/ISSUE_TEMPLATE/
Dconfig.yml3 - name: FreeRTOS Community Support Forum
Ddocumentation-issue.md2 name: Documentation issue
Dfeature_request.md2 name: Feature request
Dbug-report.md2 name: Bug report
/Kernel-v11.0.1/portable/
Dreadme.txt10 microcontroller or compiler, where the directory name denotes the compiler
/Kernel-v11.0.1/portable/GCC/MicroBlazeV8/
Dportmacro.h220 /* The human readable name of the task that was running at the time the
221 * exception occurred. This is the name that was given to the task when the
318 * The name of the interrupt handler that should be installed is vPortTickISR(),
/Kernel-v11.0.1/portable/GCC/MicroBlazeV9/
Dportmacro.h225 /* The human readable name of the task that was running at the time the
226 * exception occurred. This is the name that was given to the task when the
323 * The name of the interrupt handler that should be installed is vPortTickISR(),
/Kernel-v11.0.1/portable/ThirdParty/GCC/RP2040/
DLICENSE.md14 3. Neither the name of the copyright holder nor the names of its contributors may be used to endors…

1234