Home
last modified time | relevance | path

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

1234

/Kernel-v11.1.0/.github/workflows/
Dkernel-demos.yml1 name: FreeRTOS-Kernel Demos
13 name: WIN32 MSVC
16 - name: Checkout the FreeRTOS/FreeRTOS Repository
25 - name: Checkout Pull Request
30 - name: Add msbuild to PATH
33 - name: Build WIN32-MSVC Demo
37 - name: Build WIN32-MSVC-Static-Allocation-Only Demo
42 name: WIN32 MingW
45 - name: Checkout the FreeRTOS/FreeRTOS Repository
54 - 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.1.0/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…
323 * @param pcName A descriptive name for the task. This is mainly used to
368 * xTaskCreate( vTaskCode, "NAME", STACK_SIZE, &ucParameterToPass, tskIDLE_PRIORITY, &xHandle );
427 * @param pcName A descriptive name for the task. This is mainly used to
492 * "NAME", // Text name for the task.
564 * "ATask", // pcName - just a text name for the task to assist debugging.
658 * "ATask", // pcName - just a text name for the task to assist debugging.
793 * xTaskCreate( vTaskCode, "NAME", STACK_SIZE, NULL, tskIDLE_PRIORITY, &xHandle );
993 * xTaskCreate( vTaskCode, "NAME", STACK_SIZE, NULL, tskIDLE_PRIORITY, &xHandle );
1122 * // 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.1.0/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.1.0/
Dmanifest.yml1 name : "FreeRTOS-Kernel"
DHistory.txt47 + Update the POSIX port to pass the FreeRTOS task name to pthread for
571 ulTaskNotifyTakeIndexed macro compiling, and the name space clash in the
728 previously a name had to be provided.
737 + Reverted a few structure name changes that broke several kernel aware
1013 from the task's name. xTaskGetTaskHandle() uses multiple string compare
1017 + Added the pcQueueGetQueueName() API function, which obtains the name of
1209 overwrite the task's name).
1238 line up correctly even where task name lengths vary greatly.
1624 pre-processor macro for backward compatibility with the previous name.
1779 + Reverted the change in the name of the uxTaskNumber variable made in
[all …]
Dcspell.config.yaml19 - name: freertos-words
/Kernel-v11.1.0/.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.1.0/portable/
Dreadme.txt10 microcontroller or compiler, where the directory name denotes the compiler
/Kernel-v11.1.0/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.1.0/portable/GCC/MicroBlazeV9/
Dportmacro.h235 /* The human readable name of the task that was running at the time the
236 * exception occurred. This is the name that was given to the task when the
333 * The name of the interrupt handler that should be installed is vPortTickISR(),
/Kernel-v11.1.0/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