2015年7月14日

树莓派 wheezy安装与远程登录配置

摘要: 一、准备工作1:wheezy系统镜像2:Win32DiskImager-0.9.5-install 3:SDFormatter 4:SD卡 我用的是8G二、安装系统 流程:SDFormatter 格式化安装盘->Win32DiskImager-0.9.5-install 烧写系统镜像到SD卡 (大... 阅读全文

posted @ 2015-07-14 08:46 阿南要加油 阅读(288) 评论(0) 推荐(0) 编辑

2015年6月26日

The Contiki build system 编译系统

摘要: The Contiki build system========================The Contiki build system is designed to make it easy to compile Contikiapplications for different hard... 阅读全文

posted @ 2015-06-26 16:19 阿南要加油 阅读(385) 评论(0) 推荐(0) 编辑

2015年4月22日

ubuntu vim YCM

摘要: http://blog.sina.com.cn/s/blog_499386b00100rxm1.htmlhttp://www.cnblogs.com/junnyfeng/p/3633697.html 阅读全文

posted @ 2015-04-22 12:34 阿南要加油 阅读(185) 评论(0) 推荐(0) 编辑

2014年6月16日

编码规则

摘要: NRZ-L不归零电平编码 高电平代表1 低电平代表 0NRZI电平翻转一次表示1 其余均为0;参考自:http://wenku.baidu.com/link?url=SWYSBL7H3yBwnViWpHRLhl-9QAieN0PghNSblo2XyE8Tfh341Hzx3AoOdhUIlQNGFA_... 阅读全文

posted @ 2014-06-16 10:33 阿南要加油 阅读(221) 评论(0) 推荐(0) 编辑

2014年5月13日

计算机网络 笔记1

摘要: 1:what is computer networks? network core :routers 和 network of networks2:各个层次的点Application Layer 应用层 HTTP 、file transfer :FTP、电子邮件、DNS、P2P app... 阅读全文

posted @ 2014-05-13 18:43 阿南要加油 阅读(220) 评论(0) 推荐(0) 编辑

2014年4月26日

Here are some of my ideas .

摘要: 1:Learning english is very important ,its the very useful for my major studying and my future development.2:Nothing is more import than focusing on yo... 阅读全文

posted @ 2014-04-26 17:33 阿南要加油 阅读(239) 评论(0) 推荐(0) 编辑

单向链表的反转问题

摘要: 1 #ifndef LIST_H_INCLUDED 2 #define LIST_H_INCLUDED 3 #include 4 #include 5 #define L_TYPE char 6 typedef struct Node node; 7 typedef struct Node* ... 阅读全文

posted @ 2014-04-26 12:04 阿南要加油 阅读(345) 评论(0) 推荐(0) 编辑

2014年4月23日

C语言 中缀转后缀

摘要: 给定字符串型的算术表达式,实现中缀转后缀并运算得出结果; 1 #ifndef STACK_H_INCLUDED 2 #define STACK_H_INCLUDED 3 #include 4 #include 5 #include"stack.h" 6 #define SIZE 100 7 #d... 阅读全文

posted @ 2014-04-23 22:25 阿南要加油 阅读(406) 评论(0) 推荐(0) 编辑

C语言复习--实现栈

摘要: C 1 #include 2 #include 3 #define STACK_SIZE 100 4 typedef char TYPE; 5 typedef struct Node* pNode; 6 typedef struct Node node; 7 typedef pNode Stac... 阅读全文

posted @ 2014-04-23 14:57 阿南要加油 阅读(151) 评论(0) 推荐(0) 编辑

2014年4月21日

Java 学习 第六篇;接口

摘要: 1: 接口定义修饰符 interface 接口名{ 常量定义; 抽象方法定义;}修饰符 interface 接口名 extends 父接口表{ 常量定义; 抽象方法定义;}-> 修饰符可以是public 也可以省略具体情况根据编程实际来决定;‘-> 接口只能继承接口2:接口的特征;接口定义的常量属性... 阅读全文

posted @ 2014-04-21 16:53 阿南要加油 阅读(192) 评论(2) 推荐(0) 编辑

导航