Lost !

-----hard working for the furture.

导航

统计

文章分类 -  嵌入式

上一页 1 2 3 4 5 6 7 ··· 9 下一页

常用的Linux五大利器printf,cut,grep,sed,awk
摘要:https://blog.csdn.net/as4589sd/article/details/108834410 阅读全文

posted @ 2024-09-02 21:24 失落''80 阅读(7) 评论(0) 推荐(0) 编辑

linux 主机和开发板交叉编译
摘要:1. 主机: main.c 查看代码 #include <stdio.h> int main() { printf("hello world!!\r\n"); return 0; } 2. 执行静态编译 arm-linux-gnueabihf-gcc main.c -o hello --static 阅读全文

posted @ 2024-09-01 16:52 失落''80 阅读(2) 评论(0) 推荐(0) 编辑

metaRTC集成lvgl ui demo编译指南
摘要:https://zhuanlan.zhihu.com/p/661388537 阅读全文

posted @ 2024-09-01 12:38 失落''80 阅读(7) 评论(0) 推荐(0) 编辑

WebRtc源码下载与编译(完整版)
摘要:https://blog.csdn.net/zhangpf6699/article/details/134138777 https://www.jianshu.com/p/c7614a4ca954 阅读全文

posted @ 2024-08-29 21:32 失落''80 阅读(33) 评论(0) 推荐(0) 编辑

s3c2440移植linux内核之引导
摘要:S3C2440 移植最新5.2linux内核 https://www.cnblogs.com/kmist/p/11362849.html https://www.bilibili.com/read/cv36388268/ https://blog.csdn.net/u013171226/articl 阅读全文

posted @ 2024-08-27 23:31 失落''80 阅读(4) 评论(0) 推荐(0) 编辑

uboot 编译
摘要:https://docs.u-boot.org/en/latest/build/source.html https://docs.u-boot.org/en/latest/board/emulation/qemu-arm.html 解决办法:##命令 export CROSS_COMPILE=arm 阅读全文

posted @ 2024-08-27 21:58 失落''80 阅读(2) 评论(0) 推荐(0) 编辑

__gnu_mcount_nc_patch.patch.gz
摘要:下载得到文件__gnu_mcount_nc_patch.patch.gz后,使用命令:gzip -dc __gnu_mcount_nc_patch.patch.gz | patch -p1,再次编译,搞定 https://www.cnblogs.com/Mr-ox/p/6351830.html 阅读全文

posted @ 2024-08-27 18:04 失落''80 阅读(6) 评论(0) 推荐(0) 编辑

S3C2440移植linux3.4.2内核之支持YAFFS文件系统
摘要:https://cloud.tencent.com/developer/article/1826586 阅读全文

posted @ 2024-08-27 17:39 失落''80 阅读(5) 评论(0) 推荐(0) 编辑

S3C2440移植linux3.4.2内核之内核框架介绍及简单修改
摘要:https://cloud.tencent.com/developer/article/1826581 make s3c2440_defconfig make zImage -j4 OBJCOPY arch/arm/boot/zImage Kernel: arch/arm/boot/zImage i 阅读全文

posted @ 2024-08-27 17:37 失落''80 阅读(5) 评论(0) 推荐(0) 编辑

Ubuntu 16.04 搭建嵌入式交叉编译环境arm-linux-gcc 4.4.3 过程图解
摘要:https://community.sslcode.com.cn/64426403ae650e245cfebd69.html?dp_token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpZCI6MzUwNDE5LCJleHAiOjE3MjUzNDU1NDEsI 阅读全文

posted @ 2024-08-27 14:43 失落''80 阅读(13) 评论(0) 推荐(0) 编辑

清华大学出版社配套资料即密码获取方式
摘要:C程序设计(基于Linux平台)(微课版) http://www.tup.tsinghua.edu.cn/booksCenter/book_10206901.html# 课件密码 9109 清华大学出版社官方网址:http://www.tup.tsinghua.edu.cn/index.html ( 阅读全文

posted @ 2024-08-27 11:44 失落''80 阅读(49) 评论(0) 推荐(0) 编辑

安装arm-linux-gnueabihf-gcc编译器
摘要:https://snapshots.linaro.org/gnu-toolchain/13.0-2022.11-1/arm-linux-gnueabihf/ https://blog.csdn.net/qq_34031123/article/details/102967618 https://rel 阅读全文

posted @ 2024-08-26 22:09 失落''80 阅读(71) 评论(0) 推荐(0) 编辑

RGB、LVDS、MIPI和EDP接口液晶屏
摘要:http://t.csdnimg.cn/d3JYI 概述 一、RGB_TTL 二、LVDS 三、MIPI(手机、平板等数码产品应用场合) 四、eDP接口(笔记本、工控机、工业平板等应用场合,用来取代LVDS接口) 五、应用 阅读全文

posted @ 2024-08-26 14:24 失落''80 阅读(34) 评论(0) 推荐(0) 编辑

2440init.txt
摘要:setmem 0x53000000,0x00000000,32 setmem 0x4a000008,0xffffffff,32 setmem 0x4a00001c,0x00007fff,32 setmem 0x48000000,0x2212d110,32 setmem 0x48000004,0x00 阅读全文

posted @ 2024-08-26 10:01 失落''80 阅读(3) 评论(0) 推荐(0) 编辑

文件描述符及重定向
摘要:https://blog.51cto.com/u_12891/10384647 阅读全文

posted @ 2024-08-25 21:03 失落''80 阅读(5) 评论(0) 推荐(0) 编辑

Linux通用GPIO驱动写法与应用
摘要:https://cloud.tencent.com/developer/article/1599571 阅读全文

posted @ 2024-08-24 17:34 失落''80 阅读(3) 评论(0) 推荐(0) 编辑

Linux内核编程Hello World
摘要:https://blog.csdn.net/qq_53928256/article/details/129740442 https://www.cnblogs.com/nerohwang/p/3621316.html /usr/src/linux-headers-$(uname -r)/includ 阅读全文

posted @ 2024-08-24 17:18 失落''80 阅读(3) 评论(0) 推荐(0) 编辑

oracle-linux-8
摘要:https://sysin.org/blog/oracle-linux-8/ 阅读全文

posted @ 2024-08-24 10:49 失落''80 阅读(3) 评论(0) 推荐(0) 编辑

visual studio 使用cmake构建项目并远程连接虚拟机centos7
摘要:https://blog.csdn.net/weixin_44144762/article/details/127467173 http://t.csdnimg.cn/phVnA http://t.csdnimg.cn/e95fE https://notes.leconiot.com/vs_linu 阅读全文

posted @ 2024-08-24 09:30 失落''80 阅读(5) 评论(0) 推荐(0) 编辑

SecureCRT buttons
摘要:clear: clear \r\n ctags: ctags -R . \r\n clang-format: clang-format -style=google -i %f \r\n make: make -j$(nproc) \r\n 阅读全文

posted @ 2024-08-24 01:01 失落''80 阅读(4) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 ··· 9 下一页
点击右上角即可分享
微信分享提示