惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

有赞技术团队
有赞技术团队
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
P
Palo Alto Networks Blog
C
Cisco Blogs
The Hacker News
The Hacker News
T
Threatpost
S
Schneier on Security
K
Kaspersky official blog
Spread Privacy
Spread Privacy
博客园_首页
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
NISL@THU
NISL@THU
量子位
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
Google DeepMind News
Google DeepMind News
Security Latest
Security Latest
博客园 - 司徒正美
云风的 BLOG
云风的 BLOG
博客园 - 叶小钗
H
Hackread – Cybersecurity News, Data Breaches, AI and More
N
News and Events Feed by Topic
爱范儿
爱范儿
P
Proofpoint News Feed
C
CERT Recently Published Vulnerability Notes
Project Zero
Project Zero
Application and Cybersecurity Blog
Application and Cybersecurity Blog
Cisco Talos Blog
Cisco Talos Blog
GbyAI
GbyAI
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
Apple Machine Learning Research
Apple Machine Learning Research
T
Tenable Blog
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
V
Vulnerabilities – Threatpost
Forbes - Security
Forbes - Security
博客园 - 三生石上(FineUI控件)
C
Cyber Attacks, Cyber Crime and Cyber Security
N
News and Events Feed by Topic
V
V2EX
Webroot Blog
Webroot Blog
The Register - Security
The Register - Security
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
阮一峰的网络日志
阮一峰的网络日志
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Blog — PlanetScale
Blog — PlanetScale
M
MIT News - Artificial intelligence
Scott Helme
Scott Helme
Simon Willison's Weblog
Simon Willison's Weblog
L
LangChain Blog
W
WeLiveSecurity
Cloudbric
Cloudbric

博客园 - 为敢技术

iConsole隐私政策 iConsole用户协议 iCapture隐私政策 iCapture用户协议 上传文件中的.DS_Store问题 iROM用户协议 iROM隐私政策 iConsole请求麦克风权限 博文阅读密码验证 - 博客园 创建图像分类器模型 DevEco Studio:在Windows电脑上启动模拟器,提示未开启Hyper-V iMac / MacBook设置U盘启动 DevEco Testing教程 DevEco Studio实用技巧 鸿蒙知识点 Mac系统安装Node.js及配置环境变量 HarmonyOS:如何使用系统自带图标 HarmonyOS:使用本地真机运行应用/服务 HarmonyOS:应用隐私保护 HarmonyOS:应用数据安全
RK3588开发板入门教程
为敢技术 · 2024-12-23 · via 博客园 - 为敢技术

一、EVM-RK3588 评估板外观

二、常用系统信息查看

1、查看系统内核版本信息,使用uname命令:

2、查看操作系统信息:

4、查看系统磁盘使用情况:

5、查看磁盘和分区:

# 查看所有分区
$ fdisk -l 
# 查看文件可看到各分区信息。
$ cat /proc/partitions 

6、查看网络信息:

# 查看所有网络接口的属性
$ ifconfig
# 查看路由表
$ route -n 
# 查看所有监听端口和建立的连接
$ netstat 

7、查看进程信息:

# 查看所有进程
$ ps –ef
# 实时显示进程状态
$ top

三、温度测试

1、输入如下命令查看温度值,即的RK3588开发板的温度传感器数据:

$ cat /sys/class/thermal/thermal_zone0/temp

四、RTC 功能测试

1、设置系统时间:

$ date -s "2025-01-01 1200"

2、将系统时间同步到硬件RTC时间:

3、显示硬件RTC时间:

4、系统时间同步:重启开发板之后,进入系统后读取系统时间,可以看到时间已经与RTC时间同步:

五、看门狗测试

watchdog 是指看门狗 (监控芯片)。看门狗,又叫 watchdog,从本质上来说就是一个定时器电路,一般有一个输入和一个输出,其中输入叫做喂狗,输出一般连接到另外一个部分的复位端,一般是连接到单片机。看门狗的功能是定期的查看芯片内部的情况,一旦发生错误就向芯片发出重启信号。看门狗命令在程序的中断中拥有最高的优先级。

1、启动看门狗,设置复位时间 10s,并定时喂狗

2、 输入如下命令打开看门狗并执行喂狗操作,系统不会重启。

3、使用 ctrl+c 结束测试程序时,停止喂狗,看门狗处于打开状态,10s 后系统复位;若不执行复位操作,则再预备关机的 10s 之内输入如下命令关闭看门狗即可。

4、启动看门狗,设置系统重启时间为 10s 且不执行喂狗操作。

$ tw_test_watchdogrestart

系统将会在10s后复位。