You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: readme.md
+7-3Lines changed: 7 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -7,8 +7,8 @@ It does this by keeping hands off almost everything, and only touching the minim
7
7
8
8
The canonical source for information is the [FreeRTOS Web Site](http://www.freertos.org/"FreeRTOS").
9
9
Within this site, the [Getting Started](http://www.freertos.org/FreeRTOS-quick-start-guide.html"Quick Start Guide") page is very useful.
10
-
It is worth having a view from a user, and [manicbug](https://maniacbug.wordpress.com/2012/01/31/freertos/) has some interesting examples.
11
-
My other [AVRfreeRTOS Repository](https://sourceforge.net/projects/avrfreertos/) has plenty of examples,
10
+
11
+
My other [AVRfreeRTOS Sourceforge Repository](https://sourceforge.net/projects/avrfreertos/) or [AVRfreeRTOS Github](https://github.com/feilipu/avrfreertos) has plenty of examples,
12
12
ranging from [blink](https://sourceforge.net/projects/avrfreertos/files/MegaBlink/) through to a [synthesiser](https://sourceforge.net/projects/avrfreertos/files/GA_Synth/).
13
13
14
14
## General
@@ -39,6 +39,11 @@ Memory for the heap is allocated by the normal malloc() function, wrapped by pvP
39
39
This option has been selected because it is automatically adjusted to use the capabilities of each device.
40
40
Other heap allocation schemes are supported by FreeRTOS, and they can used with additional configuration.
41
41
42
+
## Upgrading
43
+
44
+
*[Upgrading to FreeRTOS-9](http://www.freertos.org/FreeRTOS-V9.html)
45
+
*[Upgrading to FreeRTOS-10](http://www.freertos.org/FreeRTOS-V10.html)
46
+
42
47
## Errors
43
48
44
49
* Stack Overflow: If any stack (for the loop() or) for any Task overflows, there will be a slow LED blink, with 4 second cycle.
@@ -68,6 +73,5 @@ Testing with the Software Serial library shows some incompatibilities at low bau
68
73
* FreeRTOSConfig.h : Contains a multitude of API and environment configurations.
69
74
* FreeRTOSVariant.h : Contains the AVR specific configurations for this port of freeRTOS.
70
75
* heap_3.c : Contains the heap allocation scheme based on malloc(). Other schemes are available, but depend on user configuration for specific MCU choice.
71
-
* To use static Task creation, see Pull Request #19 for details.
0 commit comments