
个人
还我紫霞
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
i2c
I2C是由Philips公司发明的一种串行数据通信协议,仅使用两根信号线:SerialClock(简称SCL)和SerialData(简称SDA)。I2C是总线结构,1个Master,1个或多个Slave,各Slave设备以7位地址区分,地址后面再跟1位读写位,表示读(=1)或者写(=0),所以我们有时也可看到8位形式的设备地址,此时每个设备有读、写两个地址,高7位地址其实是相同的。 I2C数据...原创 2019-10-24 19:49:19 · 1133 阅读 · 0 评论 -
Linux搭建SVN服务器
1 安装SVN 官网下载:http://subversion.apache.org/packages.html SVN客户端:TortoiseSVN,官网下载:http://tortoisesvn.net/downloads.html # yum install subversion: 1.新建一个目录用于存储SVN所有文件 # mkdir /svn 2. 新建转载 2016-09-16 14:24:15 · 301 阅读 · 0 评论 -
Android TextView文字过多时通过滚动条显示多余内容
Android 软件设计界面时,TextView文字过多,显示不全,怎么办?我们可以为Textview添加滚动条。 android:id="@+id/bus_detail_content" android:layout_width="fill_parent" android:layout转载 2015-10-28 20:22:08 · 2676 阅读 · 0 评论 -
函数重定向
#include "stdio.h" #include "stdlib.h" #define AAAA #define BBBB #ifdef AAAA extern int test1(void); extern int test2(void); #ifdef BBBB #define test test1 #else #define test tes原创 2015-06-10 19:10:31 · 1094 阅读 · 0 评论 -
bat 脚本
:: this is .bat test :: :: :: 2015_02_28 :: yangchaofeng @echo off echo 欢迎来到BAT! :: ############################# 显示LEDS 亮度值 ############################# :Display_leds_br原创 2015-03-02 23:25:00 · 482 阅读 · 0 评论 -
git 学习
1、git status/diff命令中怎样以彩色显示改动状态 git config --global color.ui false git config --global color.ui true 网址:http://jingyan.baidu.com/article/bad08e1e867c8309c85121f9.html 2、git 操作 《http://www.原创 2014-12-03 23:31:09 · 488 阅读 · 0 评论 -
高通 LCD 笔记
qcom,mdss-dsi-on-command 格式 注意写命令时候用的dcs write的命令格式:,高通的command 格式 qcom,mdss-dsi-on-command:A byte stream formed by multiple dcs packets base on qcom dsi controller protocol. byte 0: dc原创 2014-12-24 21:28:53 · 1472 阅读 · 0 评论 -
个人总结
linux 启动 :http://www.docin.com/p-627496528.html原创 2014-08-27 23:06:42 · 553 阅读 · 0 评论 -
学习记录,不断更新
将 printk("yangchaofeng testing : %s->%s:%i\n", __FILE__,__FUNCTION__, __LINE__);原创 2014-11-08 01:11:57 · 633 阅读 · 0 评论