摘要: 继续上一篇:1. 构建S3C6410裸机开发环境,并使用GPIO控制LED灯 1 /* 2 * 实现流水灯,LED1 LED2 LED3 LED4轮流被点亮熄灭 3 */ 4 5 .global _start 6 .section .text 7 8 _start: 9 10 /*11 * set the CPU to SVC32 mode12 */13 mrs r0,cpsr14 bic r0,r0,#0x1f @ clear the last 5 bits15 orr r0,r0,#0xd3 @ 0b1... 阅读全文
posted @ 2014-03-21 14:15 xiaoying_ 阅读(323) 评论(0) 推荐(0) 编辑
摘要: 1. 下载insight-6.8a.tar.bz2编译: ./configure --target=arm-linux --prefix=/opt/insight_arm --disable-werror(1) 其中--target=arm-linux会影响安装生成的可执行文件的名字,例如安装之后可执行文件的名字为:caodan@caodan-Ubuntu:/opt/insight_arm/bin$ lsarm-linux-gdb arm-linux-insight arm-linux-run tclsh8.4 wish8.4(2) --prefix=/opt/insight_arm 的作用, 阅读全文
posted @ 2014-03-12 20:46 xiaoying_ 阅读(3195) 评论(0) 推荐(0) 编辑
摘要: 通过客户端访问博客园:博客园推荐的客户端是Windows Live Writer, 并不支持linux.如何在linux下编辑博客呢?使用Blogilo客户端。安装方法: Ubuntu下:sudo apt-get install blogilo配置: 打开Blogilo, 点击Blog->Add Blog1. 输入Blog主页的URL, 由于博客园支持使用MetaWeblog方式访问博客,所以需要... 阅读全文
posted @ 2014-02-10 21:59 xiaoying_ 阅读(175) 评论(0) 推荐(0) 编辑