You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
FreeRTOS-Kernel/portable
Cristian Cristea 24ade42a37
Added better pointer declaration readability (#567)
* Add better pointer declaration readability

I revised the declaration of single-line pointers by splitting it into
multiple lines. Now, every pointer is declared (and initialized
accordingly) on its own line. This refactoring should enhance
readability and decrease the probability of error when a new pointer is
added/removed or a current one has its initialization value modified.

Signed-off-by: Cristian Cristea <cristiancristea00@gmail.com>

* Remove unnecessary whitespace characters and lines

It removes whitespace characters at the end of lines (empty or
othwerwise) and clear lines at the end of the file (only one remains).
It is an automatic operation done by git.

Signed-off-by: Cristian Cristea <cristiancristea00@gmail.com>

Signed-off-by: Cristian Cristea <cristiancristea00@gmail.com>
2 years ago
..
ARMClang Re-sync with upstream and stripping away none kernel related. 5 years ago
ARMv8M Added better pointer declaration readability (#567) 2 years ago
BCC/16BitDOS Normalize files with mixed line endings (introduced in commit 3a413d1) 4 years ago
CCS fix typo (#399) 3 years ago
CodeWarrior Normalize files with mixed line endings (introduced in commit 3a413d1) 4 years ago
Common Restrict unpriv task to invoke code with privilege 2 years ago
GCC Added better pointer declaration readability (#567) 2 years ago
IAR Added better pointer declaration readability (#567) 2 years ago
Keil Re-sync with upstream and stripping away none kernel related. 5 years ago
MPLAB Add atomic flag for 16-bit ticks PIC24 (#488) 3 years ago
MSVC-MingW Normalize files with mixed line endings (introduced in commit 3a413d1) 4 years ago
MemMang Added better pointer declaration readability (#567) 2 years ago
MikroC/ARM_CM4F fix typo (#399) 3 years ago
Paradigm/Tern_EE Normalize files with mixed line endings (introduced in commit 3a413d1) 4 years ago
RVDS Remove local stack variable form MPU wrappers 2 years ago
Renesas Normalize files with mixed line endings (introduced in commit 3a413d1) 4 years ago
Rowley Normalize files with mixed line endings (introduced in commit 3a413d1) 4 years ago
SDCC/Cygnal Tidy up the 8051 sdcc port (#376) 4 years ago
Softune Normalize files with mixed line endings (introduced in commit 3a413d1) 4 years ago
Tasking/ARM_CM4F Normalize files with mixed line endings (introduced in commit 3a413d1) 4 years ago
ThirdParty Added better pointer declaration readability (#567) 2 years ago
WizC/PIC18 Normalize files with mixed line endings (introduced in commit 3a413d1) 4 years ago
oWatcom/16BitDOS Added better pointer declaration readability (#567) 2 years ago
CMakeLists.txt Update CMakeLists.txt for Cortex-M55 and Cortex-M85 ports (#560) 2 years ago
readme.txt Style: Change FreeRTOS websites in comments (#131) 5 years ago

readme.txt

This file contains invisible Unicode characters!

This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.

Each real time kernel port consists of three files that contain the core kernel
components and are common to every port, and one or more files that are
specific to a particular microcontroller and/or compiler.


+ The FreeRTOS/Source/Portable/MemMang directory contains the five sample
memory allocators as described on the https://www.FreeRTOS.org WEB site.

+ The other directories each contain files specific to a particular
microcontroller or compiler, where the directory name denotes the compiler
specific files the directory contains.



For example, if you are interested in the [compiler] port for the [architecture]
microcontroller, then the port specific files are contained in
FreeRTOS/Source/Portable/[compiler]/[architecture] directory.  If this is the
only port you are interested in then all the other directories can be
ignored.