GitXplorerGitXplorer
m

stm32FreeRTOS

public
0 stars
0 forks
0 issues

Commits

List of commits on branch main.
Unverified
743bf418962033ed2342ba78c3fa98ded5bb3456

Perform atomic message read in prvReadBytesFromBuffer

mmilesfrain committed 4 years ago
Unverified
adef568d5253ad5825db3d26bb0f6d9b72657416

Remove unnecessary length arg from prvReadMessageFromBuffer

mmilesfrain committed 4 years ago
Unverified
5fcd86a8ee055e748726fb75344c79a40a0150e6

Perform atomic message write in prvWriteMessageToBuffer

mmilesfrain committed 4 years ago
Unverified
c3420fcc635853de1b595c24e8f41b235155a55d

Fix inaccuracies in prvWriteBytesToBuffer description

mmilesfrain committed 4 years ago
Unverified
2a24fe852642e67b6fd7413d11f2cd86419da15d

initial freeRTOS commit at STM32Cube_FW_F4_V1.25.2

mmilesfrain committed 4 years ago

README

The README file for this repository.

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 directory contains the three files that are common to every port - list.c, queue.c and tasks.c. The kernel is contained within these three files. croutine.c implements the optional co-routine functionality - which is normally only used on very memory limited systems.

  • The FreeRTOS/Source/Portable directory contains the files that are specific to a particular microcontroller and or compiler.

  • The FreeRTOS/Source/include directory contains the real time kernel header files.

See the readme file in the FreeRTOS/Source/Portable directory for more information.