打印
[LKS32 软件]

FreeRTOS移植方法与实践

[复制链接]
42|0
手机看帖
扫描二维码
随时随地手机跟帖
跳转到指定楼层
楼主
tpgf|  楼主 | 2024-11-1 16:22 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
1. 移植概述
FreeRTOS 是一个轻量级的实时操作系统,适用于嵌入式系统。由于其小巧、高效和可配置的特性,FreeRTOS 广泛应用于各种微控制器中。然而,不同微控制器的硬件架构和外设接口各不相同,因此在使用 FreeRTOS 时,需要进行移植以适应特定的硬件平台。本节将详细介绍 FreeRTOS 的移植方法和实践,帮助开发者快速将 FreeRTOS 移植到目标硬件上。


1.1 移植的必要性
FreeRTOS 提供了多种架构的支持,但并不是所有架构都已包含在官方发行版中。此外,即使官方支持的架构也可能不完全符合项目需求。因此,开发者需要根据目标硬件的特性进行移植,以确保 FreeRTOS 能够在特定的微控制器上高效运行。

1.2 移植的基本步骤
FreeRTOS 的移植主要涉及以下几个步骤:

选择合适的 FreeRTOS 版本。
配置 FreeRTOS 的配置文件。
实现与硬件相关的中断管理。
实现调度器相关的函数。
配置任务的堆栈和上下文切换。
测试和验证移植的正确性。
2. 选择合适的 FreeRTOS 版本
FreeRTOS 官方提供了多个版本,每个版本可能包含不同的功能和优化。选择合适的 FreeRTOS 版本对于移植的成功至关重要。

2.1 版本选择依据
目标硬件的架构:FreeRTOS 支持多种架构,如 ARM Cortex-M、AVR、MIPS 等。选择与目标硬件架构相匹配的版本。
项目需求:根据项目的具体需求选择功能丰富的版本或轻量级的版本。
社区支持:选择社区支持较好的版本,以便在遇到问题时能够快速获得帮助。
2.2 获取 FreeRTOS 源码
可以从 FreeRTOS 官方网站下载最新的源码包,或使用 git 从官方仓库克隆源码。以下是一个示例命令:

git clone https://github.com/FreeRTOS/FreeRTOS.git


3. 配置 FreeRTOS 的配置文件
FreeRTOS 的配置文件 FreeRTOSConfig.h 包含了各种编译选项和系统参数。正确配置这些参数是移植成功的关键。

3.1 配置文件详解
系统时钟:

#define configTICK_RATE_HZ 1000


任务堆栈大小:

#define configMINIMAL_STACK_SIZE 128


任务优先级:

#define configMAX_PRIORITIES 5


中断优先级:

#define configLIBRARY_LOWEST_INTERRUPT_PRIORITY 15
#define configLIBRARY_MAX_SYSCALL_INTERRUPT_PRIORITY 5


内存管理:

#define configTOTAL_HEAP_SIZE ( ( size_t ) ( 32768 ) )
#define configSUPPORT_DYNAMIC_ALLOCATION 1
#define configSUPPORT_STATIC_ALLOCATION 1


3.2 配置文件示例
以下是一个 FreeRTOSConfig.h 的示例配置文件:

/* FreeRTOS configuration header file. */

#ifndef FREERTOS_CONFIG_H
#define FREERTOS_CONFIG_H

/* Defines the tick rate of the RTOS kernel. */
#define configTICK_RATE_HZ 1000

/* Defines the minimum stack size for a task. */
#define configMINIMAL_STACK_SIZE 128

/* Defines the maximum number of priorities. */
#define configMAX_PRIORITIES 5

/* Defines the lowest interrupt priority that can be used by the RTOS kernel. */
#define configLIBRARY_LOWEST_INTERRUPT_PRIORITY 15

/* Defines the highest interrupt priority that can be used by the RTOS kernel. */
#define configLIBRARY_MAX_SYSCALL_INTERRUPT_PRIORITY 5

/* Defines the total heap size. */
#define configTOTAL_HEAP_SIZE ( ( size_t ) ( 32768 ) )

/* Enables or disables dynamic allocation. */
#define configSUPPORT_DYNAMIC_ALLOCATION 1

/* Enables or disables static allocation. */
#define configSUPPORT_STATIC_ALLOCATION 1

/* Other configuration options can be added here as needed. */

#endif /* FREERTOS_CONFIG_H */



4. 实现与硬件相关的中断管理
FreeRTOS 的中断管理依赖于目标硬件的特性。正确实现中断管理函数是保证 RTOS 正常运行的基础。

4.1 中断管理函数
Tick 中断处理:

void xPortSysTickHandler( void )
{
    /* Increment the RTOS tick count. */
    xTaskIncrementTick();

    /* Switch context if necessary. */
    portYIELD();
}


中断使能和禁用:

void vPortEnterCritical( void )
{
    /* Disable interrupts. */
    __disable_irq();
}

void vPortExitCritical( void )
{
    /* Enable interrupts. */
    __enable_irq();
}


4.2 中断优先级设置
FreeRTOS 需要配置中断优先级以确保 RTOS 内核的中断能够优先处理。以下是一个示例代码:

/* Set the priority of the SysTick interrupt. */
void vPortSetupTimerInterrupt( void )
{
    /* Set the SysTick interrupt priority. */
    NVIC_SetPriority( SysTick_IRQn, configLIBRARY_MAX_SYSCALL_INTERRUPT_PRIORITY );
}

/* Set the priority of a generic interrupt. */
void vPortSetInterruptPriority( uint32_t ulInterruptNumber, uint32_t ulPriority )
{
    /* Set the priority of the specified interrupt. */
    NVIC_SetPriority( ulInterruptNumber, ulPriority );
}


5. 实现调度器相关的函数
FreeRTOS 调度器负责任务的调度和上下文切换。正确实现调度器相关的函数是移植的核心内容。

5.1 任务切换函数
任务切换:
void vPortYield( void )
{
    /* Trigger a context switch. */
    portYIELD();
}

void vPortYieldFromISR( void )
{
    /* Trigger a context switch from an ISR. */
    portYIELD_FROM_ISR();
}


5.2 任务上下文切换
FreeRTOS 需要保存和恢复任务的上下文信息。以下是一个示例代码:

/* Save the context of the current task. */
void vPortSaveContext( void )
{
    /* Save the context of the current task. */
    portSAVE_CONTEXT();
}

/* Restore the context of the next task. */
void vPortRestoreContext( void )
{
    /* Restore the context of the next task. */
    portRESTORE_CONTEXT();
}




5.3 任务堆栈初始化
FreeRTOS 需要为每个任务初始化堆栈。以下是一个示例代码:

/* Initialize the stack of a task. */
StackType_t *pxPortInitialiseStack( StackType_t *pxTopOfStack, TaskFunction_t pxCode, void *pvParameters )
{
    /* Initialize the stack of the task. */
    pxTopOfStack = portINITIALISE_STACK( pxTopOfStack, pxCode, pvParameters );

    return pxTopOfStack;
}


6. 配置任务的堆栈和上下文切换
FreeRTOS 任务的堆栈和上下文切换配置是移植的重要部分。正确的配置可以提高系统的稳定性和性能。

6.1 任务堆栈配置
堆栈大小:

#define configMINIMAL_STACK_SIZE 128


堆栈对齐:

#define portSTACK_ALIGNMENT 8


6.2 上下文切换配置
上下文切换宏:

#define portYIELD() __asm volatile ( "svc 0" : : : "memory" )
#define portYIELD_FROM_ISR() ( ( void ) 0 )


任务切换宏:

#define portSAVE_CONTEXT() __asm volatile ( \
    "mrs r0, psp \n" \
    "stmdb sp!, {r0, r4-r11, lr} \n" \
    "cpsid i \n" \
    "mov r0, sp \n" \
    "ldr r1, pxCurrentTCB \n" \
    "ldr r1, [r1] \n" \
    "str r0, [r1] \n" \
    "isb \n" \
    "dsb \n" \
    "cpsie i \n" \
    "dmb \n" \
  )

#define portRESTORE_CONTEXT() __asm volatile ( \
    "mrs r0, psp \n" \
    "ldr r1, pxCurrentTCB \n" \
    "ldr r1, [r1] \n" \
    "ldr r0, [r1] \n" \
    "ldmia r0!, {r0, r4-r11, lr} \n" \
    "msr psp, r0 \n" \
    "isb \n" \
    "dsb \n" \
    "cpsie i \n" \
  )




6.3 任务堆栈初始化示例
以下是一个任务堆栈初始化的示例代码:

/* Initialize the stack of a task. */
StackType_t *pxPortInitialiseStack( StackType_t *pxTopOfStack, TaskFunction_t pxCode, void *pvParameters )
{
    /* Initialize the stack of the task. */
    StackType_t *pxOriginalTOS;

    pxOriginalTOS = pxTopOfStack;

    /* Place a known value at the bottom of the stack. */
    *pxTopOfStack = ( StackType_t ) 0xdeadbeef;
    pxTopOfStack--;

    /* Place the address of the task function on the stack. */
    *pxTopOfStack = ( StackType_t ) pxCode;
    pxTopOfStack--;

    /* Place the address of the task parameters on the stack. */
    *pxTopOfStack = ( StackType_t ) pvParameters;
    pxTopOfStack--;

    /* Initialize the stack with the rest of the context. */
    pxTopOfStack = portINITIALISE_STACK( pxTopOfStack, pxCode, pvParameters );

    /* Return the new top of the stack. */
    return pxTopOfStack;
}



7. 测试和验证移植的正确性
移植完成后,需要进行详细的测试和验证以确保 FreeRTOS 能够在目标硬件上正常运行。

7.1 测试环境搭建
开发工具:使用合适的开发工具,如 Keil、IAR 或 GCC。
仿真器:如果可能,使用硬件仿真器进行测试。
调试工具:使用调试工具,如 JTAG 或 SWD 调试器。
7.2 测试任务创建和调度
以下是一个简单的测试代码,用于验证任务创建和调度功能:

#include "FreeRTOS.h"
#include "task.h"

/* Task function prototypes. */
void vTask1( void *pvParameters );
void vTask2( void *pvParameters );

/* Task handles. */
TaskHandle_t xTask1Handle = NULL;
TaskHandle_t xTask2Handle = NULL;

/* Task function 1. */
void vTask1( void *pvParameters )
{
    ( void ) pvParameters;

    while( 1 )
    {
        /* Task 1 code. */
        configPRINT_STRING( "Task 1 running\n" );

        /* Delay the task. */
        vTaskDelay( 1000 / portTICK_PERIOD_MS );
    }
}

/* Task function 2. */
void vTask2( void *pvParameters )
{
    ( void ) pvParameters;

    while( 1 )
    {
        /* Task 2 code. */
        configPRINT_STRING( "Task 2 running\n" );

        /* Delay the task. */
        vTaskDelay( 2000 / portTICK_PERIOD_MS );
    }
}

int main( void )
{
    /* Create tasks. */
    xTaskCreate( vTask1, "Task 1", configMINIMAL_STACK_SIZE, NULL, 2, &xTask1Handle );
    xTaskCreate( vTask2, "Task 2", configMINIMAL_STACK_SIZE, NULL, 1, &xTask2Handle );

    /* Start the scheduler. */
    vTaskStartScheduler();

    /* The following line will only execute if there is insufficient heap available. */
    for( ;; )
    {
        configPRINT_STRING( "Failed to create tasks\n" );
    }

    return 0;
}



7.3 测试中断处理
以下是一个测试中断处理的示例代码:

#include "FreeRTOS.h"
#include "task.h"
#include "timers.h"

/* Timer handler. */
TimerHandle_t xTimer;

/* Timer callback function. */
void vTimerCallback( TimerHandle_t xTimer )
{
    /* Timer callback code. */
    configPRINT_STRING( "Timer expired\n" );
}

/* Timer initialization. */
void vInitTimer( void )
{
    /* Create a timer. */
    xTimer = xTimerCreate( "Timer",            // Timer name.
                          pdMS_TO_TICKS( 1000 ),  // Timer period.
                          pdTRUE,              // Auto-reload.
                          ( void * ) 0,        // Timer ID.
                          vTimerCallback );    // Timer callback function.

    /* Start the timer. */
    xTimerStart( xTimer, 0 );
}

int main( void )
{
    /* Initialize the timer. */
    vInitTimer();

    /* Create tasks. */
    xTaskCreate( vTask1, "Task 1", configMINIMAL_STACK_SIZE, NULL, 2, &xTask1Handle );
    xTaskCreate( vTask2, "Task 2", configMINIMAL_STACK_SIZE, NULL, 1, &xTask2Handle );

    /* Start the scheduler. */
    vTaskStartScheduler();

    /* The following line will only execute if there is insufficient heap available. */
    for( ;; )
    {
        configPRINT_STRING( "Failed to create tasks\n" );
    }

    return 0;
}



7.4 测试内存管理
以下是一个测试内存管理的示例代码:

#include "FreeRTOS.h"
#include "task.h"
#include "semphr.h"

/* Semaphore handle. */
SemaphoreHandle_t xSemaphore;

/* Task function 1. */
void vTask1( void *pvParameters )
{
    ( void ) pvParameters;

    while( 1 )
    {
        /* Task 1 code. */
        configPRINT_STRING( "Task 1 waiting for semaphore\n" );

        /* Wait for the semaphore. */
        if( xSemaphoreTake( xSemaphore, portMAX_DELAY ) == pdTRUE )
        {
            configPRINT_STRING( "Task 1 received semaphore\n" );
        }

        /* Delay the task. */
        vTaskDelay( 1000 / portTICK_PERIOD_MS );
    }
}

/* Task function 2. */
void vTask2( void *pvParameters )
{
    ( void ) pvParameters;

    while( 1 )
    {
        /* Task 2 code. */
        configPRINT_STRING( "Task 2 giving semaphore\n" );

        /* Give the semaphore. */
        xSemaphoreGive( xSemaphore );

        /* Delay the task. */
        vTaskDelay( 2000 / portTICK_PERIOD_MS );
    }
}

int main( void )
{
    /* Create a semaphore. */
    xSemaphore = xSemaphoreCreateBinary();

    /* Create tasks. */
    xTaskCreate( vTask1, "Task 1", configMINIMAL_STACK_SIZE, NULL, 2, &xTask1Handle );
    xTaskCreate( vTask2, "Task 2", configMINIMAL_STACK_SIZE, NULL, 1, &xTask2Handle );

    /* Start the scheduler. */
    vTaskStartScheduler();

    /* The following line will only execute if there is insufficient heap available. */
    for( ;; )
    {
        configPRINT_STRING( "Failed to create tasks\n" );
    }

    return 0;
}



8. 进一步优化和调试
8.1 优化中断响应时间
优化中断响应时间是提高系统实时性能的关键。以下是一些优化建议:

减少中断优先级:确保中断优先级设置合理,避免频繁抢占。例如,可以将不重要的中断设置为较低的优先级,而将关键的中断设置为较高的优先级。
优化中断处理代码:尽量减少中断处理代码的复杂性和执行时间。中断处理函数应尽可能简短,避免在中断中进行耗时的操作。
8.2 调试工具的使用
使用调试工具可以帮助开发者快速定位和解决移植过程中出现的问题。以下是一些常用的调试工具和技巧:

JTAG/SWD 调试器:用于单步调试和查看寄存器状态。通过设置断点,可以观察程序在特定位置的行为。
日志打印:使用 configPRINT_STRING 或其他日志打印函数记录关键信息。日志可以帮助开发者了解系统的运行状态和任务调度情况。
断点设置:在关键函数和中断处理函数中设置断点,以便观察程序的执行流程。例如,在 xPortSysTickHandler 和 vPortYield 函数中设置断点,可以检查任务切换和时钟中断的处理是否正确。
8.3 调试示例
以下是一个使用日志打印进行调试的示例代码:

#include "FreeRTOS.h"
#include "task.h"

/* Task function 1. */
void vTask1( void *pvParameters )
{
    ( void ) pvParameters;

    while( 1 )
    {
        /* Task 1 code. */
        configPRINT_STRING( "Task 1 running\n" );

        /* Delay the task. */
        vTaskDelay( 1000 / portTICK_PERIOD_MS );
    }
}

/* Task function 2. */
void vTask2( void *pvParameters )
{
    ( void ) pvParameters;

    while( 1 )
    {
        /* Task 2 code. */
        configPRINT_STRING( "Task 2 running\n" );

        /* Delay the task. */
        vTaskDelay( 2000 / portTICK_PERIOD_MS );
    }
}

int main( void )
{
    /* Create tasks. */
    xTaskCreate( vTask1, "Task 1", configMINIMAL_STACK_SIZE, NULL, 2, &xTask1Handle );
    xTaskCreate( vTask2, "Task 2", configMINIMAL_STACK_SIZE, NULL, 1, &xTask2Handle );

    /* Start the scheduler. */
    vTaskStartScheduler();

    /* The following line will only execute if there is insufficient heap available. */
    for( ;; )
    {
        configPRINT_STRING( "Failed to create tasks\n" );
    }

    return 0;
}



8.4 优化内存管理
优化内存管理可以提高系统的稳定性和性能。以下是一些优化建议:

合理设置堆栈大小:根据任务的实际需求设置合适的堆栈大小,避免内存浪费。
使用静态内存分配:如果项目允许,可以使用静态内存分配来减少动态内存分配的开销。
内存碎片管理:定期检查内存碎片,确保系统有足够的连续内存用于任务创建和数据存储。
8.5 调试内存管理
以下是一个调试内存管理的示例代码:

#include "FreeRTOS.h"
#include "task.h"
#include "semphr.h"

/* Semaphore handle. */
SemaphoreHandle_t xSemaphore;

/* Task function 1. */
void vTask1( void *pvParameters )
{
    ( void ) pvParameters;

    while( 1 )
    {
        /* Task 1 code. */
        configPRINT_STRING( "Task 1 waiting for semaphore\n" );

        /* Wait for the semaphore. */
        if( xSemaphoreTake( xSemaphore, portMAX_DELAY ) == pdTRUE )
        {
            configPRINT_STRING( "Task 1 received semaphore\n" );
        }

        /* Delay the task. */
        vTaskDelay( 1000 / portTICK_PERIOD_MS );
    }
}

/* Task function 2. */
void vTask2( void *pvParameters )
{
    ( void ) pvParameters;

    while( 1 )
    {
        /* Task 2 code. */
        configPRINT_STRING( "Task 2 giving semaphore\n" );

        /* Give the semaphore. */
        xSemaphoreGive( xSemaphore );

        /* Delay the task. */
        vTaskDelay( 2000 / portTICK_PERIOD_MS );
    }
}

int main( void )
{
    /* Create a semaphore. */
    xSemaphore = xSemaphoreCreateBinary();

    /* Create tasks. */
    xTaskCreate( vTask1, "Task 1", configMINIMAL_STACK_SIZE, NULL, 2, &xTask1Handle );
    xTaskCreate( vTask2, "Task 2", configMINIMAL_STACK_SIZE, NULL, 1, &xTask2Handle );

    /* Start the scheduler. */
    vTaskStartScheduler();

    /* The following line will only execute if there is insufficient heap available. */
    for( ;; )
    {
        configPRINT_STRING( "Failed to create tasks\n" );
    }

    return 0;
}



8.6 优化任务调度
优化任务调度可以提高系统的响应速度和资源利用率。以下是一些优化建议:

合理设置任务优先级:根据任务的重要性和实时性要求设置合适的优先级。
减少任务切换开销:优化任务切换相关的代码,减少上下文切换的时间。
使用任务通知:任务通知机制可以替代信号量和消息队列,减少内存开销和提高效率。
8.7 调试任务调度
以下是一个调试任务调度的示例代码:

#include "FreeRTOS.h"
#include "task.h"

/* Task function 1. */
void vTask1( void *pvParameters )
{
    ( void ) pvParameters;

    while( 1 )
    {
        /* Task 1 code. */
        configPRINT_STRING( "Task 1 running\n" );

        /* Delay the task. */
        vTaskDelay( 1000 / portTICK_PERIOD_MS );
    }
}

/* Task function 2. */
void vTask2( void *pvParameters )
{
    ( void ) pvParameters;

    while( 1 )
    {
        /* Task 2 code. */
        configPRINT_STRING( "Task 2 running\n" );

        /* Delay the task. */
        vTaskDelay( 2000 / portTICK_PERIOD_MS );
    }
}

int main( void )
{
    /* Create tasks. */
    xTaskCreate( vTask1, "Task 1", configMINIMAL_STACK_SIZE, NULL, 2, &xTask1Handle );
    xTaskCreate( vTask2, "Task 2", configMINIMAL_STACK_SIZE, NULL, 1, &xTask2Handle );

    /* Start the scheduler. */
    vTaskStartScheduler();

    /* The following line will only execute if there is insufficient heap available. */
    for( ;; )
    {
        configPRINT_STRING( "Failed to create tasks\n" );
    }

    return 0;
}


8.8 总结
通过以上步骤,开发者可以成功地将 FreeRTOS 移植到目标硬件上,并进行详细的测试和验证。在移植过程中,合理的配置文件设置、正确的中断管理、任务调度和内存管理优化是关键。使用调试工具和日志打印可以帮助开发者快速定位和解决移植过程中出现的问题,确保系统的稳定性和性能。

希望本文档对开发者在 FreeRTOS 移植过程中提供有价值的参考和帮助。如果在移植过程中遇到具体问题,可以参考 FreeRTOS 官方文档或寻求社区支持。
————————————————

                            版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。

原文链接:https://blog.csdn.net/weixin_42749425/article/details/142647384

使用特权

评论回复
发新帖 我要提问
您需要登录后才可以回帖 登录 | 注册

本版积分规则

1867

主题

15482

帖子

11

粉丝