Toggle navigation
首页
问答
文章
积分商城
专家
专区
更多专区...
文档中心
返回主站
搜索
提问
会员
中心
登录
注册
flash
树莓派Pico
树莓派Pico Flash驱动踩坑记录
发布于 2023-10-19 19:38:07 浏览:624
订阅该版
[tocm] # 树莓派Pico Flash驱动踩坑记录 树莓派 pico 带有 2MB 的 Flash 资源,以下是我基于官方 Pico C/C++ SDK 对接 Flash 驱动时踩到的一些坑和解决办法。 开发环境是基于我之前的文章使用 clion 和 picoprobe 对 pico 进行下载调试。 ## Flash Read 对接 Flash 的 read 方法时,官方 SDK 并没有提供专门的 read api,选择使用 memcpy 直接读出 ```c int _flash_read(rt_uint32_t addr, rt_uint8_t *buf, size_t size) { rt_memcpy(buf, (const void *)(XIP_BASE + addr), size); return size; } ``` ## 测试运行时遇到的问题 **需要注意不能在 flash 中调用 sdk 中提供的 flash 相关 api** 我是直接通过改写 examples 中提供的例程进行测试: ```c #define FLASH_TARGET_OFFSET (256 * 1024) const uint8_t *flash_target_contents = (const uint8_t *) (XIP_BASE + FLASH_TARGET_OFFSET); void print_buf(const uint8_t *buf, size_t len) { for (size_t i = 0; i < len; ++i) { rt_kprintf("%02x", buf[i]); if (i % 16 == 15) rt_kprintf("\n"); else rt_kprintf(" "); } } int flash_test() { uint8_t read_data[FLASH_PAGE_SIZE]; uint8_t random_data[FLASH_PAGE_SIZE]; for (int i = 0; i < FLASH_PAGE_SIZE; ++i) random_data[i] = i; rt_kprintf("Generated random data:\n"); print_buf(random_data, FLASH_PAGE_SIZE); // Note that a whole number of sectors must be erased at a time. rt_kprintf("\nErasing target region...\n"); _flash_erase(FLASH_TARGET_OFFSET, FLASH_SECTOR_SIZE); rt_kprintf("Done. Read back target region:\n");/* print_buf(flash_target_contents, FLASH_PAGE_SIZE);*/ rt_kprintf("\nProgramming target region...\n"); _flash_write(FLASH_TARGET_OFFSET, random_data, FLASH_PAGE_SIZE); rt_kprintf("Done. Read back target region:\n"); _flash_read(FLASH_TARGET_OFFSET, read_data, FLASH_PAGE_SIZE); print_buf(read_data, FLASH_PAGE_SIZE); bool mismatch = false; for (int i = 0; i < FLASH_PAGE_SIZE; ++i) { if (random_data[i] != flash_target_contents[i]) mismatch = true; } if (mismatch) rt_kprintf("Programming failed!\n"); else rt_kprintf("Programming successful!\n"); } MSH_CMD_EXPORT(flash_test, flash test); ``` 但是运行到 `rt_kprintf("\nErasing target region...\n")` 以后,程序就不动了,debug 发现程序在执行 flash 擦除的时候跑飞了,于是去到 flash_range_erase 的实现查找原因。 ```c void __no_inline_not_in_flash_func(flash_range_erase) ``` 注意到 `__no_inline_not_in_flash_func` ,该函数不能在 flash 中进行调用。因为我是使用 openocd 将程序下载到 flash 中,导致的问题。于是尝试改用常规的 uf2 文件下载程序,成功运行: ``` msh >flash_test Generated random data: 00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f 10 11 12 13 14 15 16 17 18 19 1a 1b 1c 1d 1e 1f 20 21 22 23 24 25 26 27 28 29 2a 2b 2c 2d 2e 2f 30 31 32 33 34 35 36 37 38 39 3a 3b 3c 3d 3e 3f 40 41 42 43 44 45 46 47 48 49 4a 4b 4c 4d 4e 4f 50 51 52 53 54 55 56 57 58 59 5a 5b 5c 5d 5e 5f 60 61 62 63 64 65 66 67 68 69 6a 6b 6c 6d 6e 6f 70 71 72 73 74 75 76 77 78 79 7a 7b 7c 7d 7e 7f 80 81 82 83 84 85 86 87 88 89 8a 8b 8c 8d 8e 8f 90 91 92 93 94 95 96 97 98 99 9a 9b 9c 9d 9e 9f a0 a1 a2 a3 a4 a5 a6 a7 a8 a9 aa ab ac ad ae af b0 b1 b2 b3 b4 b5 b6 b7 b8 b9 ba bb bc bd be bf c0 c1 c2 c3 c4 c5 c6 c7 c8 c9 ca cb cc cd ce cf d0 d1 d2 d3 d4 d5 d6 d7 d8 d9 da db dc dd de df e0 e1 e2 e3 e4 e5 e6 e7 e8 e9 ea eb ec ed ee ef f0 f1 f2 f3 f4 f5 f6 f7 f8 f9 fa fb fc fd fe ff Erasing target region... Done. Read back target region: Programming target region... Done. Read back target region: 00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f 10 11 12 13 14 15 16 17 18 19 1a 1b 1c 1d 1e 1f 20 21 22 23 24 25 26 27 28 29 2a 2b 2c 2d 2e 2f 30 31 32 33 34 35 36 37 38 39 3a 3b 3c 3d 3e 3f 40 41 42 43 44 45 46 47 48 49 4a 4b 4c 4d 4e 4f 50 51 52 53 54 55 56 57 58 59 5a 5b 5c 5d 5e 5f 60 61 62 63 64 65 66 67 68 69 6a 6b 6c 6d 6e 6f 70 71 72 73 74 75 76 77 78 79 7a 7b 7c 7d 7e 7f 80 81 82 83 84 85 86 87 88 89 8a 8b 8c 8d 8e 8f 90 91 92 93 94 95 96 97 98 99 9a 9b 9c 9d 9e 9f a0 a1 a2 a3 a4 a5 a6 a7 a8 a9 aa ab ac ad ae af b0 b1 b2 b3 b4 b5 b6 b7 b8 b9 ba bb bc bd be bf c0 c1 c2 c3 c4 c5 c6 c7 c8 c9 ca cb cc cd ce cf d0 d1 d2 d3 d4 d5 d6 d7 d8 d9 da db dc dd de df e0 e1 e2 e3 e4 e5 e6 e7 e8 e9 ea eb ec ed ee ef f0 f1 f2 f3 f4 f5 f6 f7 f8 f9 fa fb fc fd fe ff Programming successful! ```
1
条评论
默认排序
按发布时间排序
登录
注册新账号
关于作者
螺丝松掉的人
这家伙很懒,什么也没写!
文章
42
回答
0
被采纳
0
关注TA
发私信
相关文章
1
OTA 片上FLASH擦除失败
2
请问 怎么实现flash的FIFO存储呢
3
FAL初始化输出调试信息bug
4
spi1挂载w25q32失败
5
SD卡与外置flash(dg25q32)一起应用,挂载spi2总线上
6
w25q128 flash 怎么在电脑和开发板上切换挂载
7
RTT没有对FLASH进行操作的指令吗
8
求一份基于RTT系统封装好的STM32F1系列的FLASH操作程序
9
使用FAL接口写的片内flash的擦除函数会死掉
10
关于潘多拉flash操作例程的
推荐文章
1
RT-Thread应用项目汇总
2
玩转RT-Thread系列教程
3
国产MCU移植系列教程汇总,欢迎查看!
4
机器人操作系统 (ROS2) 和 RT-Thread 通信
5
五分钟玩转RT-Thread新社区
6
【技术三千问】之《玩转ART-Pi》,看这篇就够了!干货汇总
7
关于STM32H7开发板上使用SDIO接口驱动SD卡挂载文件系统的问题总结
8
STM32的“GPU”——DMA2D实例详解
9
RT-Thread隐藏的宝藏之completion
10
【ART-PI】RT-Thread 开启RTC 与 Alarm组件
热门标签
RT-Thread Studio
串口
Env
LWIP
SPI
AT
Bootloader
Hardfault
CAN总线
FinSH
ART-Pi
USB
DMA
文件系统
RT-Thread
SCons
RT-Thread Nano
线程
MQTT
STM32
RTC
FAL
rt-smart
ESP8266
I2C_IIC
WIZnet_W5500
UART
ota在线升级
PWM
cubemx
freemodbus
flash
packages_软件包
BSP
潘多拉开发板_Pandora
定时器
ADC
GD32
flashDB
socket
中断
Debug
编译报错
msh
SFUD
rt_mq_消息队列_msg_queue
keil_MDK
ulog
MicroPython
C++_cpp
本月问答贡献
a1012112796
20
个答案
3
次被采纳
张世争
11
个答案
3
次被采纳
踩姑娘的小蘑菇
7
个答案
3
次被采纳
rv666
9
个答案
2
次被采纳
用户名由3_15位
13
个答案
1
次被采纳
本月文章贡献
程序员阿伟
9
篇文章
2
次点赞
hhart
3
篇文章
4
次点赞
RTT_逍遥
1
篇文章
6
次点赞
大龄码农
1
篇文章
5
次点赞
ThinkCode
1
篇文章
1
次点赞
回到
顶部
发布
问题
投诉
建议
回到
底部