Chinaunix首页 | 论坛 | 博客
  • 博客访问: 117884
  • 博文数量: 22
  • 博客积分: 145
  • 博客等级: 入伍新兵
  • 技术积分: 127
  • 用 户 组: 普通用户
  • 注册时间: 2012-12-06 15:19
文章分类

全部博文(22)

文章存档

2015年(5)

2014年(2)

2013年(7)

2012年(9)

我的朋友

发布时间:2012-12-30 23:23:44

Table 2.1 summarizes the rules for precedence and associativity of all operators, including those that we have not yet discussed. Operators on the same line have the same precedence; rows are in order of decreasing precedence, so, for example, *, /, and % all have the same precedence,......【阅读全文】

阅读(1123) | 评论(0) | 转发(0)

发布时间:2012-12-29 21:06:24

1. 引言    嵌入式系统由硬件环境、嵌入式操作系统和应用程序组成,硬件环境是操作系统和应用程序运行的硬件平台,它随应用的不同而有不同的要求。硬件平台的多样性是嵌入式系统的主要特点,如何使嵌入式操作系统在不同的硬件平台上有效地运行,是嵌入式系统开发中需要解决的关键问题。解决的方法是在硬件平台和操作系统之间提供硬件相关层来屏蔽这些硬件的差异,给操作系统提供统一的运行环境,这种硬件相关层就是嵌入式系统中的板级支持包BSP(Board Support Package,简称BSP)。本文以PXA250处理器为硬件环境,研究了在嵌入式Linux系统中不同开发阶段BSP的设......【阅读全文】

阅读(1042) | 评论(0) | 转发(0)

发布时间:2012-12-18 17:58:02

      1. Generate ssh identity file:        ssh-keygen -f ~/.ssh/user-name2. Set up config file        host 192.168.2.xxx        user git      &nbs......【阅读全文】

阅读(889) | 评论(0) | 转发(0)

发布时间:2012-12-18 17:56:01

    /* * Frequently Occurred Mistakes when code in C */ /* May 8, 2008 */Right shift unsigned int, vacated bits will be filled with zero. Unlike signed int, which is filled with sign bits. /* May 7, 2008 */struct student {         ......【阅读全文】

阅读(875) | 评论(0) | 转发(0)

发布时间:2012-12-13 16:33:50

最近学习《linxu设备驱动开发详解》中的关于字符设备驱动第六章的内容,记录如下,一.globalmem.c文件如下/* * A globalmem driver as an example of char device drivers * * The initial developer of the original code is Barry Song * <author@linuxdriver.cn>. All Rights Reserved. */#include <linux/module.h>#i......【阅读全文】

阅读(1288) | 评论(0) | 转发(0)
给主人留下些什么吧!~~
留言热议
请登录后留言。

登录 注册