eric2013 发表于 2016-6-7 02:54:08

FreeRTOS动态内存管理和静态内存管理两种方式的异同

静态内存管理是在V9.0.0版本才新增的一种方式,介绍看官方的这个帖子即可:
http://www.freertos.org/Static_Vs_Dynamic_Memory_Allocation.html

=======================================================


Static Vs Dynamic Memory Allocation



Introduction

FreeRTOS versions prior to V9.0.0 allocate the memory used by the RTOS objects listed below from thespecial FreeRTOS heap. FreeRTOS V9.0.0 and onwards gives the application writer the ability to instead provide the memory themselves, allowing the following objects to optionally be created without any memory being allocated dynamically:TasksSoftware TimersQueuesEvent GroupsBinary SemaphoresCounting SemaphoresRecursive SemaphoresMutexesWhether it is preferable to use static or dynamic memory allocation is dependent on the application, and the preference of the application writer. Both methods have pros and cons, and both methods can be used within the same RTOS application.The simple Win32 example located in the FreeRTOS/Source/WIN32-MSVC-Static-Allocation-Only directory of the main FreeRTOS download demonstrates how a FreeRTOS application can be created without including any of the FreeRTOS heap implementations in a project.




Creating an RTOS Object Using Dynamically Allocated RAM

Creating RTOS objects dynamically has the benefit of greater simplicity, and the potential to minimise the application's maximum RAM usage:Fewer function parameters are required when an object is created.
The memory allocation occurs automatically, within the RTOS API functions.
The application writer does not need to concern themselves with allocating memory themselves.
The RAM used by an RTOS object can be re-used if the object is deleted, potentially reducing the application's maximum RAM footprint.
RTOS API functions are provided to return information on heap usage, allowing the heap size to be optimised.
The memory allocation scheme used can be chosen to best suite the application, be that heap_1.c for simplicity and determinism often necessary for safety critical applications, heap_4.c for fragmentation protection, heap_5.c to split the heap across multiple RAM regions, or an allocation scheme provided by the application writer themselves.
The following API functions, which are available if configSUPPORT_DYNAMIC_ALLOCATION is set to 1 or left undefined, create RTOS objects using dynamically allocated RAM:
xTaskCreate()xQueueCreate()xTimerCreate()xEventGroupCreate()xSemaphoreCreateBinary()xSemaphoreCreateCounting()xSemaphoreCreateMutex()xSemaphoreCreateRecursiveMutex()



Creating an RTOS Object Using Statically Allocated RAM

Creating RTOS objects using statically allocated RAM has the benefit of providing the application writer with more control:RTOS objects can be placed at specific memory locations.
The maximum RAM footprint can be determined at link time, rather than run time.
The application writer does not need to concern themselves with graceful handling of memory allocation failures.
It allows the RTOS to be used in applications that simply don't allow any dynamic memory allocation (although FreeRTOS includes allocation schemes that can overcome most objections).
The following API functions, which are available if configSUPPORT_STATIC_ALLOCATION is set to 1, allow RTOS objects to be created using memory provided by the application writer. To provide memory the application writer simply needs to declare a variable of the appropriate object type, then pass the address of the variable into the RTOS API function. The StaticAllocation.c standard demo/test task is provided to demonstrate how the functions are used:
xTaskCreateStatic()xQueueCreateStatic()xTimerCreateStatic()xEventGroupCreateStatic()xSemaphoreCreateBinaryStatic()xSemaphoreCreateCountingStatic()xSemaphoreCreateMutexStatic()xSemaphoreCreateRecursiveMutexStatic()

星辰大海 发表于 2021-6-12 16:49:17

硬汉哥,想问下,FreeRTOS中动态任务创建和静态任务创建啥区别,咱们手册里面也没提到静态任务创建。

eric2013 发表于 2021-6-13 10:00:22

星辰大海 发表于 2021-6-12 16:49
硬汉哥,想问下,FreeRTOS中动态任务创建和静态任务创建啥区别,咱们手册里面也没提到静态任务创建。

制作我们的那个手册那会FreeRTOS还没有静态方式。

静态方式是后来出的,之前仅有动态方式。

静态方式就是定义各一个数组,动态方式就是类似malloc动态申请和释放。

novice 发表于 2021-6-15 15:41:53

增加静态创建API好,比较灵活。有了静态版本后就可以灵活放到自己的结构里面,不需要再用FreeRTOS本身的内存分配模块了。
页: [1]
查看完整版本: FreeRTOS动态内存管理和静态内存管理两种方式的异同