摘要: void AD_Init(void) (1)初始化DMA结构体变量 typedef struct { uint32_t DMA_PeripheralBaseAddr; /*!< Specifies the peripheral base address for DMAy Channelx. */ u 阅读全文
posted @ 2018-01-11 14:12 It秦 阅读(6807) 评论(0) 推荐(0)
摘要: 1.如何下载Android源代码的环境 第一步:创建一个存放下载脚本文件repo的目录 #mkdir ~/bin #PATH=~/bin:$PATH 第二步:下载repo脚本文件(用于下载Android源代码) #curl https://dl-ssl.goole.com/dl/goolesourc 阅读全文
posted @ 2016-04-27 10:46 It秦 阅读(237) 评论(0) 推荐(0)
摘要: 1.安装Git apt-get install git apt-get install git-doc git-svn git-email git-gui gitk 2.在学习Android及Linux内核,驱动开发的过程中涉及到大量的源代码,而这些源代码都有Git管理。 3.使用sudo pass 阅读全文
posted @ 2016-04-27 10:45 It秦 阅读(110) 评论(0) 推荐(0)
摘要: 1.安装JDK: 方法一:①下载JDK;②然后解压;③设置PATH环境变量#gedit /etc/profile;④输入:export PATH=.:/developer/jdk6/bin:$PATH;⑤source命令:#source /etc/profile;⑥(.)命令:. /etc/prof 阅读全文
posted @ 2016-04-27 10:40 It秦 阅读(120) 评论(0) 推荐(0)
摘要: 1.为特定设备定制Android的过程称为“移植”。 2.Android系统架构分为: 第一层:Linux内核(主要包括驱动程序以及管理内存、进程、电源等资源的程序)。 第二层:c/c++代码库(主要包括Linux的,so文件以及嵌入到spk程序中的dnk代码) 第三层:Android SDK AP 阅读全文
posted @ 2016-04-27 10:39 It秦 阅读(285) 评论(0) 推荐(0)