rt-thread studio 开启easyflash(env)

文章目录

  • 前言
  • 一、启用外部norflash
  • 补充说明


前言

提示:这里可以添加本文要记录的大概内容:

环境:
Art-pi开发板
bsp版本1.2.1
RT-Thread 4.0.3(否则添加不了fal软件包)


步骤

一、启用外部norflash

rt-thread studio 开启easyflash(env)_第1张图片

开启后编译下载,list_device 看到norflash说明成功。
rt-thread studio 开启easyflash(env)_第2张图片

开启easyflash
rt-thread studio 开启easyflash(env)_第3张图片
保存编译后会出现很多问题。studio老问题了,ports文件夹不见了,把ports改成port

rt-thread studio 开启easyflash(env)_第4张图片
改完右键刷新工程
rt-thread studio 开启easyflash(env)_第5张图片
这个问题参考
RT-Thread-添加文件夹失败是为什么?RT-Thread问答社区 - RT-Thread
删除ef_sfud_port.c,保留ef_fal_port.c
rt-thread studio 开启easyflash(env)_第6张图片
编译下载,发现没有初始化
rt-thread studio 开启easyflash(env)_第7张图片
在main函数里添加easyflash_init()。main.c可以添加#include “easyflash.h”,避免有警告,不加也可以。

rt-thread studio 开启easyflash(env)_第8张图片
编译下载后会报错。
rt-thread studio 开启easyflash(env)_第9张图片
el_fal_port.c 修改FAL_EF_PART_NAME的值
//#define FAL_EF_PART_NAME “ef”
#define FAL_EF_PART_NAME “easyflash”
rt-thread studio 开启easyflash(env)_第10张图片
编译下载,恭喜你,启动成功
rt-thread studio 开启easyflash(env)_第11张图片
添加启动次数函数

static void BootTimes(void) {
    uint32_t i_boot_times = NULL;
    char *c_old_boot_times, c_new_boot_times[11] = {0};

    /* get the boot count number from Env */
    c_old_boot_times = ef_get_env("boot_times");
    assert_param(c_old_boot_times);
    i_boot_times = atol(c_old_boot_times);
    /* boot count +1 */
    i_boot_times ++;
    rt_kprintf("The system now boot %d times\n\r", i_boot_times);
    /* interger to string */
    rt_sprintf(c_new_boot_times,"%ld", i_boot_times);
    /* set and store the boot count number to Env */
    ef_set_env("boot_times", c_new_boot_times);
    ef_save_env();
}

ef_fal_port.c 可以设置默认的环境变量


补充说明

如果保留ef_sfud_port.c
rt-thread studio 开启easyflash(env)_第12张图片
编译会报错
rt-thread studio 开启easyflash(env)_第13张图片

你可能感兴趣的:(RT-Thread,Studio,rt-thread,rt-thread,env,easyflash)