会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
ccc_zdh
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
6
下一页
2022年9月14日
arm linux 终端自动登录
摘要: /etc/profile 环境变量文件,这个是在用户登录后执行的,所以要想profile里面的开机启动程序自动运行,则必须要登录。当然也可以提前执行而不必等到登录,在/etc/init.d/ 下新建S99等级文件,在其中启动用户程序。另一种则采用自动登录,当然作为产品应用肯定前一种会更好,参考正点原
阅读全文
posted @ 2022-09-14 23:10 ccc_zdh
阅读(681)
评论(0)
推荐(0)
2022年9月2日
qt chart 以时间坐标轴为X轴,在添加数据时,时间转为整数时应转为毫秒单位的整数
摘要: qt chart 以时间坐标轴为X轴,在添加数据时,时间转为整数时应转为毫秒单位的整数,同时应注意时间的设置以及转成毫秒的数值bit位数,如果以当前时间转为毫秒则已超出int(32bit)的范围 axisTime = new QDateTimeAxis;axisTime->setFormat("mm
阅读全文
posted @ 2022-09-02 17:29 ccc_zdh
阅读(1291)
评论(0)
推荐(0)
2022年8月22日
qml slider 斑马线
摘要: Slider{ id:sliderbar x:296 y:172 width: 530 height: 40 from: 0 to:1000 value: 500 stepSize: 1 onMoved:{ console.log("pos1 is %d",sliderbar.visualPosit
阅读全文
posted @ 2022-08-22 21:15 ccc_zdh
阅读(183)
评论(0)
推荐(0)
qml 进度条 斑马线
摘要: ProgressBar{ id:progressbar x:296 y:172 width: 530 height: 40 minimumValue: 0 maximumValue:1000 value: 500 style:ProgressBarStyle{ id:progressStyle ba
阅读全文
posted @ 2022-08-22 17:32 ccc_zdh
阅读(331)
评论(0)
推荐(0)
2022年8月17日
uboot mmc fat命令
摘要: fatload mmc 0:1 80800000 zImage reading zImage4164040 bytes read in 228 ms (17.4 MiB/s) 读文件 读取mmc0 第一个分区的在Image文件到0x80800000 fatwrite mmc 1:1 80800000
阅读全文
posted @ 2022-08-17 16:50 ccc_zdh
阅读(540)
评论(0)
推荐(0)
arm linux 启动,屏幕显示please wait booting 和登录相关字符
摘要: 1. please wait booting /etc/init.d/banner.sh 删除或者改名 2 开机动画 /etc/init.d/psplash.sh 删除或者改名 3. 登录相关的字符 /etc/inittab 中的 注释掉
阅读全文
posted @ 2022-08-17 10:30 ccc_zdh
阅读(356)
评论(0)
推荐(0)
2022年8月13日
qml组件加载
摘要: widget->setSource(QUrl::fromLocalFile(":/qml/ParaNmes.qml")); 这种方式加载有问题,放资源文件中无法加载组件,qml文件和可执行文件分离则可以正常加载widget->setSource(QUrl("qrc:/qml/ParaNmes.qml
阅读全文
posted @ 2022-08-13 17:35 ccc_zdh
阅读(91)
评论(0)
推荐(0)
imx6 buildroot编译
摘要: 1.下载源码 地址:https://buildroot.org/ 随便选一个,下载后解决解压 2.配置 Target options -> Target Architecture = ARM (little endian) -> Target Binary Format = ELF -> Targe
阅读全文
posted @ 2022-08-13 13:39 ccc_zdh
阅读(156)
评论(0)
推荐(0)
2022年8月12日
qt debug/release pro文件配置
摘要: OBJECTS_DIR += objMOC_DIR += moc#DESTDIR += binCONFIG+=debug_and_releaseCONFIG(debug, debug|release){ TARGET = out_debug} else { TARGET = out_release}
阅读全文
posted @ 2022-08-12 16:45 ccc_zdh
阅读(348)
评论(0)
推荐(0)
2022年8月11日
rtx5 消息队列初始化
摘要: #define MSG_COM_TX_NUM 16 typedef struct { uint16_t cmd; uint16_t len; uint8_t buff[32]; }com_msg_t; osMessageQueueId_t msg_com_tx; osSemaphoreId_t se
阅读全文
posted @ 2022-08-11 17:34 ccc_zdh
阅读(164)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
下一页
公告