硬件平台:TI AM335X Starter Kit
开发源码:TI-Android-ICS-4.0.3-DevKit-EVM-SK-3.0.1.bin
主机系统:Ubuntu 10.04
这次写《Android 从硬件到应用》是想尝试从底层的最简单的GPIO硬件驱动开始,一步一步的向上走,经过硬件抽象层HAL、JNI方法等,最终编写出APP,达到硬件调用的目的,期间会增加一些...
分类:
移动开发 时间:
2014-12-12 20:54:08
阅读次数:
315
Bluetooth Driver acts as interface between HCI core and TI Shared Transport Layer.
/drivers/bluetooth/Btwilink.c:
#include
#include
#include
#include
#include
#include
#define DEBUG
#defin...
分类:
其他好文 时间:
2014-12-11 19:15:25
阅读次数:
295
昨天分享了一个环形滚动条控件,今天分享一个提示框风格的窗体。代码如下:/// /// 继承自Form,但将FormBorderStyle设置为None /// public partial class TipForm : Form { public Ti...
硬件平台:AM335X Starter Kit
Android 开发源码包下载地址:TI-Android-ICS-4.0.3-DevKit-EVM-SK-3.0.1.bin
安装空间大概需要10G
创建文件夹:mkdir /home/Android
拷贝bin文件到/home/Android文件夹中
改变属性:chmod a+x TI-Android-ICS-4...
分类:
移动开发 时间:
2014-12-09 19:47:28
阅读次数:
291
Fromhttp://processors.wiki.ti.com/index.php/Android-Adding_SystemServiceAndroid-Adding SystemServiceThis wiki page will demonstrate - "How to add syst...
分类:
移动开发 时间:
2014-12-09 19:22:16
阅读次数:
333
转自“http://e2e.ti.com/support/development_tools/code_composer_studio/f/81/t/168292”Here is the information on the header:The header information for dat...
分类:
其他好文 时间:
2014-12-07 17:45:13
阅读次数:
237
XDC是TI公司为嵌入式实时系统可重用软件组件(在XDC里被成为packages,以下成为包)制定的一套标准。它包括一些有用的工具,标准的API函数,静态配置文件和打包(packaging)操作。XDC最主要的亮点在于它标准化了传递过程,并简化了在应用程序中引用目标平台下其他包的过程。本文从一个简单...
分类:
其他好文 时间:
2014-12-05 14:06:03
阅读次数:
215
titleui-router 会去解析body里的ui-sref,title对ui-router来说是一种状态,接着会去找着状态$stateProvider .state('title', { url: '/title', ... })state就是状态,发现了就会把ti...
分类:
其他好文 时间:
2014-12-05 12:17:38
阅读次数:
165
树:n(n≥0)个结点的有限集。在任一棵非空树中: 1.有且仅有一个特定称为根的结点 2.n>1时,其余结点可分为m(m>0)个互不相交的有限集T1,T2,…,Tn,Ti称为树的子树。树的性质: 递归性 层次性基本术语: 树的结点:数据元素及若干指向其子树的分支 叶子(终端结点):度(分...
分类:
其他好文 时间:
2014-12-04 21:22:13
阅读次数:
222
int strle(char *s){ int i=0; while (s[i]!='\0') { //每个字符串的结束 是以\0来判断 而不是一两个冒号来判定 注意了 i++; } return i;} int main(){ char str[]="zhe bu shi yi ge wen ti...
分类:
其他好文 时间:
2014-12-01 22:06:49
阅读次数:
138