Skip to content

Commit 9d9e37c

Browse files
authored
Merge pull request #35 from fpistm/10.2.1
FreeRTOS v10.2.1 modified by ST
2 parents a452b87 + a2727af commit 9d9e37c

File tree

104 files changed

+50983
-41218
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

104 files changed

+50983
-41218
lines changed

.editorconfig

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[*]
2+
end_of_line = lf
3+
insert_final_newline = true
4+
indent_style = space
5+
indent_size = 2
6+
trim_trailing_whitespace = true

.gitattributes

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Set the default behavior, in case people don't have core.autocrlf set.
2+
* text=auto
3+
4+
# Explicitly declare text files you want to always be normalized and converted
5+
# to native line endings on checkout.
6+
.editorconfig text eol=lf
7+
.gitattributes text eol=lf
8+
.gitignore text eol=lf
9+
10+
*.c text eol=lf
11+
*.cpp text eol=lf
12+
*.css text eol=lf
13+
*.h text eol=lf
14+
*.html text eol=lf
15+
*.ino text eol=lf
16+
*.json text eol=lf
17+
*.md text eol=lf
18+
*.MD text eol=lf
19+
*.properties text eol=lf
20+
*.readme text eol=lf
21+
*.txt text eol=lf
22+
*.url text eol=lf
23+
*.yml text eol=lf

README.md

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,15 @@ This is a port of FreeRTOS for STM32 as Arduino libraries.
55
For more information about FreeRTOS, visit the [FreeRTOS Web Site](http://www.freertos.org/ "FreeRTOS").
66
Also, See the very useful [Getting Started](http://www.freertos.org/FreeRTOS-quick-start-guide.html "Quick Start Guide") page.
77

8-
This library provides 2 FreeRTOS versions:
8+
This library provides 3 FreeRTOS versions:
99
* [9.0.0](http://www.freertos.org/FreeRTOS-V9.html)
1010
* [10.0.1](http://www.freertos.org/FreeRTOS-V10.html)
11+
* [10.2.1](http://www.freertos.org/FreeRTOS-V10.html)
1112

1213
Both have been modified by ST (See st_readme.txt in FreeRTOS Source).
1314

1415
These are the same provided with the [STM32Cube MCU Packages](http://www.st.com/en/embedded-software/stm32cube-mcu-packages.html)
16+
Or thanks to [STMicroelectronics GitHub organization](https://github.com/STMicroelectronics): [stm32_mw_freertos](https://github.com/STMicroelectronics/stm32_mw_freertos).
1517

1618
## Configuration
1719

@@ -85,3 +87,21 @@ CMSIS-RTOSv2.
8587
| [P-Nucleo-WB55RG](https://www.st.com/en/evaluation-tools/p-nucleo-wb55.html) | PASSED | PASSED | FAILED | PASSED | PASSED |
8688

8789
\* PASSED with `configUSE_NEWLIB_REENTRANT` set to 0 due to small RAM.
90+
91+
### STM32FreeRTOS v10.2.x
92+
| Board | AnalogRead_DigitalRead | frBlinkPrint | frLiuLayland | frBlink (CMSIS-RTOSv2) | Blinky (CMSIS-RTOSv2) |
93+
| --- | :---: | :---: | :---: | :---: | :---: |
94+
| [Nucleo F091RC](http://www.st.com/en/evaluation-tools/nucleo-f091rc.html) | PASSED | PASSED | FAILED | PASSED | PASSED |
95+
| [Nucleo F103RB](http://www.st.com/en/evaluation-tools/nucleo-f103rb.html) | PASSED | PASSED | PASSED | PASSED | PASSED |
96+
| [Nucleo F303RE](http://www.st.com/en/evaluation-tools/nucleo-f303re.html) | PASSED | PASSED | PASSED | PASSED | PASSED |
97+
| [Nucleo F411RE](http://www.st.com/en/evaluation-tools/nucleo-f411re.html) | PASSED | PASSED | PASSED | PASSED | PASSED |
98+
| [STM32F746G-DISCOVERY](http://www.st.com/en/evaluation-tools/32f746gdiscovery.html) | PASSED | PASSED | PASSED | PASSED | PASSED |
99+
| [Nucleo-G071RB](https://www.st.com/en/evaluation-tools/nucleo-g071rb.html) | PASSED | PASSED | FAILED | PASSED | PASSED |
100+
| [Nucleo-G474RE](https://www.st.com/en/evaluation-tools/nucleo-g474re.html) | PASSED | PASSED | FAILED | PASSED | PASSED |
101+
| [Nucleo H743ZI](https://www.st.com/en/evaluation-tools/nucleo-h743zi.html) | PASSED | PASSED | PASSED | PASSED | PASSED |
102+
| [Nucleo L053R8](http://www.st.com/en/evaluation-tools/nucleo-l053r8.html) | PASSED* | PASSED* | FAILED | PASSED | PASSED |
103+
| [Nucleo L152RE](http://www.st.com/en/evaluation-tools/nucleo-l152re.html) | PASSED | PASSED | PASSED | PASSED | PASSED |
104+
| [B-L475E-IOT01A](http://www.st.com/en/evaluation-tools/b-l475e-iot01a.html) | PASSED | PASSED | PASSED | PASSED | PASSED |
105+
| [P-Nucleo-WB55RG](https://www.st.com/en/evaluation-tools/p-nucleo-wb55.html) | PASSED | PASSED | FAILED | PASSED | PASSED |
106+
107+
\* PASSED with `configUSE_NEWLIB_REENTRANT` set to 0 due to small RAM.

examples/AnalogRead_DigitalRead/AnalogRead_DigitalRead.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,4 +131,4 @@ void TaskAnalogRead( void *pvParameters __attribute__((unused)) ) // This is a
131131
vTaskDelay(1); // one tick delay (15ms) in between reads for stability
132132
}
133133
}
134-
134+

examples/Blink_AnalogRead/Blink_AnalogRead.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,4 +112,4 @@ void TaskAnalogRead(void *pvParameters) // This is a task.
112112
vTaskDelay(1); // one tick delay (15ms) in between reads for stability
113113
}
114114
}
115-
115+

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "STM32duino FreeRTOS",
3-
"version": "10.0.3",
3+
"version": "10.2.1",
44
"keywords": "rtos, timing, thread, task, mutex, semaphore",
55
"description": "Real Time Operating System implemented for STM32",
66
"repository": {

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=STM32duino FreeRTOS
2-
version=10.0.3
2+
version=10.2.1
33
author=Richard Barry <r.barry@freertos.org>
44
maintainer=stm32duino
55
sentence=Real Time Operating System implemented for STM32

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy