嵌入式
god_knows_me
8年嵌入式开发经验
熟悉常见操作系统Linux、vxWorks,Oseck,Sysbios,Pharos
熟悉通用处理器PPC,x86,ARM系列等,以及DSP处理器,Ti C6xxx、Freescale starcore系列
熟悉各种处理器Boot,Linux移植剪裁
熟悉phy、mac驱动,以及网络协议栈功能代码,移植开源协议栈LWIP ,Broadcom交换芯片SDK移植
熟悉各种总线接口驱动,pci、rapidio、i2c、spi、uart等
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
get linux command source code
1. Add a Source /etc/apt/sources.list deb-src http://ftp.de.debian.org/debian lenny main $ apt-get update 2. apt-get source command-name原创 2012-06-13 13:42:41 · 239 阅读 · 0 评论 -
url
http://en.wikipedia.org/wiki/Main_Page http://www.chinaunix.net/ http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.ddi0194g/index.html http://www.ibm.com/developerworks/cn/ http://kern原创 2012-06-07 13:07:00 · 264 阅读 · 0 评论 -
RapidIO Packet Format
原创 2013-08-18 11:35:44 · 687 阅读 · 0 评论 -
select poll系统调用的整体结构图
http://blog.chinaunix.net/uid-20543672-id-3267385.html转载 2012-12-28 14:24:41 · 289 阅读 · 0 评论 -
select,poll,epoll实现分析—结合内核源代码
select,poll,epoll都是IO多路复用的机制。所谓I/O多路复用机制,就是说通过一种机制,可以监视多个描述符,一旦某个描述符就绪(一般是读就绪或者写就绪),能够通知程序进行相应的读写操作。但select,poll,epoll本质上都是同步I/O,因为他们都需要在读写事件就绪后自己负责进行读写,也就是说这个读写过程是阻塞的,而异步I/O则无需自己负责进行读写,异步I/O的实现会负责把数据转载 2012-12-28 14:13:38 · 319 阅读 · 0 评论 -
some WIFI words
WLAN Wireless Local Area Network无线局域网 Wi-Fi Wireless Fidelity无线保真 SDIO Secure Digital Input/Output安全数字输入/输出 DHD Dongle Host DriverDongle主机驱动 BDC Broadcom's Device Class博通设备类 CDC Communic原创 2012-09-06 17:42:11 · 320 阅读 · 0 评论 -
Android articles
http://elinux.org/Using_Bootchart_on_Android#Introduction http://elinux.org/Android_Memory_Usage#System_Memory http://elinux.org/Android_Logging_System#Overview转载 2012-09-06 17:40:34 · 248 阅读 · 0 评论 -
Some Bluetooth Words
LMP (Link Manager Protocol) HCI:Host Controller Interface L2CAP(Logical Link Control and Adaptation Protocol) SDP(Service Discovery Protocol) LAP:lower address part. 3byte UAP:upper addre原创 2012-09-07 09:06:12 · 276 阅读 · 0 评论 -
serial HOWTO
http://www.ibiblio.org/pub/Linux/docs/howto/other-formats/html_single/Serial-HOWTO.html#s1转载 2012-09-07 09:02:29 · 236 阅读 · 0 评论 -
Kernel Space - User Space Interfaces
http://people.ee.ethz.ch/~arkeller/linux/kernel_user_space_howto.html#s1转载 2012-09-06 16:21:49 · 290 阅读 · 0 评论 -
FIQ IRQ
The ARM ARM (Architecture Reference Manual) is the ultimate documentation :-) http://infocenter.arm.com/help/topic/com.arm.doc.subset.arch.reference/index.html#reference> In short, FIQ is: higher转载 2012-08-24 16:07:19 · 300 阅读 · 0 评论 -
linux shell学习
http://www.ibm.com/developerworks/cn/education/linux/l-lpic1109/index.html原创 2012-08-23 21:56:38 · 192 阅读 · 0 评论 -
gdb远程调试android
1、手机与windows的端口映射 adb forward tcp:5039 tcp:5039 \\netstat -noa查看是否映射成功 2、启动手机上的gdbserver侦听gdb的连接 adb shell gdbserver :5039 system_server adb shell gdbserver :5039 --attach pid \\attach到已经启动的pid转载 2012-08-31 15:32:23 · 549 阅读 · 0 评论 -
bash常用操作技巧tip
1. !!和! !!代替上一条命令, 例如: !xx用于搜索以xx开头的最后一个命令记录, 把以xx开头的最后一个命令再执行一次 2. ^a^b^ 用b替换上条命令中的a, 例如: 3. echo $? 查看上一条命令的返回值, 即c语言中main函数的返回值, unix的习惯, 0为成功 4. Alt + . 上条命令的最后一个参数, 例如 上调命令为l转载 2012-08-31 09:32:38 · 375 阅读 · 0 评论 -
Android
http://code.google.com/p/stid/downloads/list Android-Anatomy-GoogleIO http://code.google.com/p/stid/downloads/detail?name=Android-Anatomy-GoogleIO.pdf Inside_the_Android_Application_Framework原创 2012-08-31 14:24:06 · 231 阅读 · 0 评论 -
脚本实现linux和windows间的通知
依赖: windows下: plink: putty包里的一个程序, 用于ssh连接 linux下: ssh, samba服务ok linux下的shell脚本, notify-fifo: #!/bin/sh fifo_file=/tmp/sshfifo-${USER} if [ ! -p $fifo_file ]; then转载 2012-08-31 11:56:13 · 382 阅读 · 0 评论 -
linux shell 学习
http://www.ibm.com/developerworks/cn/education/linux/l-lpic1109/index.html 常用 bash 环境变量 变量名 功能 USER 已登录用户的用户名 UID 已登录用户的数字用户 id HOME 用户的主目录 PWD 当前工作转载 2012-08-30 17:23:38 · 316 阅读 · 2 评论
分享