Toggle navigation
首页
问答
文章
积分商城
专家
专区
更多专区...
文档中心
返回主站
搜索
提问
会员
中心
登录
注册
SystemView
使用rtthread systemview工程报错
发布于 2019-01-24 10:37:23 浏览:3203
订阅该版
synwit 的 SWM181CBT6芯片。M0内核。目前我个人已经移植过RT_Thread,能使用env工具。我最近想使用 systemview,就按照 rtt 的手册操作各位大佬,请问这怎么回事。 ![env配置2.png](https://oss-club.rt-thread.org/uploads/201901/24/103116ugn6557r3cbbcygq.png) ![env配置1.png](https://oss-club.rt-thread.org/uploads/201901/24/103116rv6uohscv0fqhojf.png) ![缺少函数定义.png](https://oss-club.rt-thread.org/uploads/201901/24/103300etbgtiywpg95zgv9.png) ![MDK报错.png](https://oss-club.rt-thread.org/uploads/201901/24/103300eyk3xbhh7pivm7qk.png) ![MDK5工程目录.png](https://oss-club.rt-thread.org/uploads/201901/24/103300nsvjfewerehferor.png)
查看更多
7
个回答
默认排序
按发布时间排序
flyboy
2019-01-24
Do my self();
楼主可以使用 rt-thread 源码中已有的工程,配置编译一下,看是不是也报同样的错误。例如:[https://github.com/RT-Thread/rt-thread/tree/master/bsp/stm32/stm32f411-st-nucleo](https://github.com/RT-Thread/rt-thread/tree/master/bsp/stm32/stm32f411-st-nucleo)
zohar
2019-01-24
这家伙很懒,什么也没写!
>楼主可以使用 rt-thread 源码中已有的工程,配置编译一下,看是不是也报同样的错误。例如:https://github. ... --- F411这个没有报错,我发现了新问题。我这个工程中少一个文件
zohar
2019-01-24
这家伙很懒,什么也没写!
>F411这个没有报错,我发现了新问题。我这个工程中少一个文件 --- 只有把systemview版本选last才有这个文档。但是问题依旧存在
zohar
2019-01-24
这家伙很懒,什么也没写!
通过修改代码,测试成功了。故另开一层说明修改内容: 1、env 配置工具中,Version 选择 lastest,这样工程中多了一个 `SEGGER_RTT_DEVICE.c` 文件 2、在 `SysTick_Handler()` 函数中添加代码 ``` SEGGER_SYSVIEW_TickCnt++; ``` 为了不报错误,在本文件中要定义变量 ```c unsigned int SEGGER_SYSVIEW_TickCnt; ``` 3、在 `SEGGER_SYSVIEW_Config_RTThread.c` 文件中添加如下代码: ```c extern unsigned int SEGGER_SYSVIEW_TickCnt; /********************************************************************* * * Defines, fixed * ********************************************************************** */ #define SCB_ICSR (*(volatile U32 *)(0xE000ED04uL)) // Interrupt Control State Register #define SCB_ICSR_PENDSTSET_MASK (1UL << 26) // SysTick pending bit #define SYST_RVR (*(volatile U32 *)(0xE000E014uL)) // SysTick Reload Value Register #define SYST_CVR (*(volatile U32 *)(0xE000E018uL)) // SysTick Current Value Register /********************************************************************* * * SEGGER_SYSVIEW_X_GetTimestamp() * * Function description * Returns the current timestamp in ticks using the system tick * count and the SysTick counter. * All parameters of the SysTick have to be known and are set via * configuration defines on top of the file. * * Return value * The current timestamp. * * * Additional information * SEGGER_SYSVIEW_X_GetTimestamp is always called when interrupts are * disabled. Therefore locking here is not required. */ U32 SEGGER_SYSVIEW_X_GetTimestamp(void) { U32 TickCount; U32 Cycles; U32 CyclesPerTick; // // Get the cycles of the current system tick. // SysTick is down-counting, subtract the current value from the number of cycles per // CyclesPerTick = SYST_RVR + 1; Cycles = (CyclesPerTick - SYST_CVR); // // Get the system tick count. // TickCount = SEGGER_SYSVIEW_TickCnt; // // If a SysTick interrupt is pending, re-read timer and adjust result // if ((SCB_ICSR & SCB_ICSR_PENDSTSET_MASK) != 0) { Cycles = (CyclesPerTick - SYST_CVR); TickCount++; } Cycles += TickCount * CyclesPerTick; return Cycles; } ``` 在文件末尾添加即可
flyboy
2019-01-25
Do my self();
难道是 M0内核的缘故
zohar
2019-03-18
这家伙很懒,什么也没写!
>难道是 M0内核的缘故 --- 是的。我也是看别人说的。M0内核太慢了。我最近调modbus。发现问题了。
dujunqiu
2024-10-18
这家伙很懒,什么也没写!
最新版本的还有这个函数也没实现,`SEGGER_SYSVIEW_X_GetInterruptId;`编译同样报错 ``` .\Objects\app.axf: Error: L6218E: Undefined symbol SEGGER_SYSVIEW_X_GetInterruptId (referred from segger_sysview.o). .\Objects\app.axf: Error: L6218E: Undefined symbol SEGGER_SYSVIEW_X_GetTimestamp (referred from segger_sysview.o). ```
撰写答案
登录
注册新账号
关注者
0
被浏览
3.2k
关于作者
zohar
这家伙很懒,什么也没写!
提问
1
回答
4
被采纳
0
关注TA
发私信
相关问题
1
关于系统资源占用率的问题(J-Link SystemViewer)
2
SystemView 分析工具 使用疑问
3
关于RTthread使用env工具配置systemview.
4
SystemView
5
systemview的版本问题!
6
SystemView 遇到问题
7
systemview配置资料从哪里找
8
有没有SystemView具体的配置过程
9
关于systermview
10
systemviewer 支持的硬件
推荐文章
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组件
最新文章
1
进行i2c驱动移植的经验总结
2
在VSCode中使用clang-format
3
我该如何使用这个微雪的WIFI400 WIFI-LPB-100在rtt里或者我该怎样为它开发驱动
4
在GD32F470Z的RTC适配笔记
5
RT Thread 源码笔记 :内存池
热门标签
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
UART
WIZnet_W5500
ota在线升级
freemodbus
PWM
flash
cubemx
packages_软件包
BSP
潘多拉开发板_Pandora
定时器
ADC
GD32
flashDB
socket
中断
编译报错
Debug
rt_mq_消息队列_msg_queue
SFUD
msh
keil_MDK
ulog
C++_cpp
MicroPython
本月问答贡献
出出啊
1517
个答案
342
次被采纳
小小李sunny
1444
个答案
289
次被采纳
张世争
808
个答案
174
次被采纳
crystal266
547
个答案
161
次被采纳
whj467467222
1222
个答案
148
次被采纳
本月文章贡献
catcatbing
3
篇文章
4
次点赞
qq1078249029
2
篇文章
2
次点赞
xnosky
2
篇文章
1
次点赞
Woshizhapuren
1
篇文章
5
次点赞
YZRD
1
篇文章
2
次点赞
回到
顶部
发布
问题
分享
好友
手机
浏览
扫码手机浏览
投诉
建议
回到
底部