自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(16)
  • 资源 (77)
  • 收藏
  • 关注

转载 睡眠时间

乔布斯年轻时每天凌晨四点起床,九点半前把一天工作做完。  他说:自由从何而来?从自信来,而自信则是从自律来! 先学会克制自己,用严格的日程表控制生活,才能在这种自律中不断磨练出自信。  自信是对事情的控制能力,如果你连最基本的时间都控制不了,还谈什么自信?  素食可以减少睡眠时间  人的一生约有三分之一的时间是在睡眠中度过的。那么动物呢?意大利科研人员经过调查发现,动物界当中,睡觉时间最多

2015-06-27 22:37:46 990

转载 汇编+内核+代码阅读

嵌入式这块如果你想深入的话,汇编和体系结构要学好,然后是操作系统要了解透、中断处理、内存管理和内核结构体等等都能达到掌握程度,另外再加上代码的阅读能力就差不多了。

2015-06-27 11:29:30 682

原创 Design Patterns Elements of Reusable Object-Oriented Software

Design Patterns  Elements  of  Reusable  Object-Oriented  Software

2015-06-26 09:52:59 710

转载 个人素质,警醒!!!

1,不要慌乱: http://www.douban.com/note/261142136/

2015-06-25 00:31:23 549

原创 用过的协议和device

1,协议: SPI: 对应的device: Digital Potentiometer: MCP41010 EEPROM: Atmel Flash: AT45DB161D //-----------------------------------------------------------------------------------------------

2015-06-18 18:31:12 1015

转载 template

http://www.doc88.com/p-3317502980378.html

2015-06-18 00:42:35 456

原创 template test

template class SysParam { struct { short TargetTemp[TempN]; short TargetVolt[FireN]; }SysParamData; public: //SysParam(); //~SysParam(); //virtual void InitSysParam(){}; //allocate spa

2015-06-17 19:01:21 635

转载 UCOS统一驱动框架:

UCOS统一驱动框架: http://wenku.baidu.com/view/7f853220dd36a32d73758139.html

2015-06-15 23:27:54 3318

原创 typing today

#include #include #include #include #include #include using namespace std; const short InTimeUnit = 1000; //1us  1000ns const short OutTimeUnit = 200; //0.2us  200ns typedef struct{

2015-06-12 19:04:21 463

原创 typing

#include #include #include #include #include #include using namespace std; const short in_time_unit = 1000;//1us  1000ns const short out_time_unit = 200; //0.2us 200ns typedef struct

2015-06-12 00:05:16 891

转载 C++中的友元函数的总结

关于C++中的友元函数的总结 1.友元函数的简单介绍 1.1为什么要使用友元函数 在实现类之间数据共享时,减少系统开销,提高效率。如果类A中的函数要访问类B中的成员(例如:智能指针类的实现),那么类A中该函数要是类B的友元函数。具体来说:为了 使其他类的成员函数直接访问该类的私有变量。即:允许外面的类或函数去访问类的私有变量和保护变量,从而使两个类共享同一函数。 实际上具体大概有

2015-06-10 17:20:47 542

转载 C++ OOP Design

Extensibility With play( )defined as virtual in the base class, you can add as  many new types as you want without changing the tune( ) function. In a well-designed OOP program, most or all of your

2015-06-08 23:35:48 935

原创 Csv_robust typing

#include #include #include using namespace std; #define LogOut printf //this class don't use the container to buffer the file data,because it's too big sometimes. class Csv { public:

2015-06-08 00:20:26 835

原创 csv typing

class Csv { private: public: Csv(){}; Csv(const char *FileAddr, int FileSize); ~Csv(){}; bool ReadField(int Row, int Col, string &Str); bool ReadField(int Row, int Col, int &Val); boo

2015-06-05 18:21:23 591

原创 constructor initializer list

使用constructor initializer list  初始化 基类的成员变量、子对象的成员变量、和成员变量。 // wave_.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include "wave_process.h" #include #

2015-06-02 17:46:15 875

转载 the function Passing and returning

From      Page:481 Passing & returning by value To understand the need for the copy-constructor, consider the way  C handles passing and returning variables by value during function  calls. I

2015-06-01 00:35:37 683

board-omap3evm

board-omap3evm

2015-08-14

Texas_Instrument.User_Guide

3_MUX(SDMMC2_DAT6, OMAP_MUX_MODE1 | OMAP_PIN_OUTPUT),

2015-08-14

linux 测试程序代码

linux应用层的实例代码,是嵌入式培训机构的实例代码,有串口操作,IIC 操作,等等。先在pc上跑通,然后交叉编译,搞到开发板上。

2015-07-19

heads code

C++ Class test code .

2015-05-11

8 位cpu的verilog实现

8 位cpu的verilog实现 verilog代码

2015-05-08

verilog 开发板基础实例代码

verilog 开发板基础实例代码,有or latch p2s s2p等等实例基础代码

2015-05-07

.Understanding.and.Using.C.Pointers.

.Understanding.and.Using.C.Pointers.

2015-04-20

ucos源码注释

ucos源码注释,每句都有注释,适合初学ucos系统的同学们。大家好好利用吧。

2015-03-18

BSP 相关内容

bsp定义,开发方法,bsp部分的相关内容,bsp与系统之间的接口设计等相关内容。

2015-03-10

嵌入式BSP基础知识

嵌入式BSP开发所包含的范围,开发流程,BSP在整个嵌入式系统中所提供的服务。BSP与bios和driver两者在概念上的区别。BSP在常用操作系统中开发方式,常用用的开发模板等。

2015-03-09

LPC芯片I2C控制逻辑

LPC芯片arm的外设I2C控制逻辑。讲解翔实,有助于更好的写驱动程序。

2015-03-05

arm assembly language programming (Pete_Cockerell)

arm assembly language programming tutorial, the book is very useful and practical,and i hope you can make the best of it.Good luck!

2015-02-25

arm instruction spec

arm instruction specification ,it's pretty useful when you learn the arm cpu.

2015-02-16

ucos port 移植

ucos具体在stm32上的移植实现,非常有参考价值。也可以用到自己的项目中去。

2015-02-11

ucos移植相关

ucos移植相关的内容。里面有各种移植好的代码,和没有移植的纯净版的代码。

2015-02-10

arm assembly

a tutorial about arm assembly language program

2015-02-10

arm assembly language

arm assembly language programming tutorial。汇编语言程序设计教程。

2015-02-10

CAN总线入门教程

can总线入门级教程。嵌入式产品很多用到can总线。

2015-01-19

计算机组成原理

学习arm硬件结构和原理的基础。一本我认为我们大学唯一的一本好教材。

2015-01-13

C4 compiler

编译器,如果想知道编译器是个什么东东,想知道编译器的相关内容,可以看看这个文件。

2015-01-12

BPF Performance Tools - Brendan Gregg.rar

BPF Performance Tools - Brendan Gregg.pdf

2021-04-16

imx linux sound 源码

imx linux sound 源码

2017-03-20

mt29c nand flash

mt29c nand flash

2017-02-22

vim 编辑器 windows版本 gvim

最强大的代码编辑器vim,在windows系统上运行的vim,如果不习惯vistual studio编辑的,可以把vim插件装到vs中,用vs编译,vim方式编辑,强大到没有朋友。让无数coder感概到:厉害了word 编辑器!且用且珍惜吧。vim强大的编辑能力,高效的输入方式,真实节省了我们很多宝贵时间,很多受益者如是说:生命苦短,我用vim。

2016-11-27

can转串口实例

can转串口,一个can协议转uart协议的通信实例,非常有借鉴价值。

2015-11-10

3D mouse demo

3D 鼠标,一个模拟鼠标的实例代码。非常有参考价值。

2015-11-10

嵌入式以太网

stm32 usb-can 嵌入式以太网教程。

2015-11-10

stm32 usb-can

stm32 usb-can stm32的usb转can的实例代码。非常有用。

2015-11-10

stm32以太网终端

stm32以太网终端,非常有参考价值,如果要学以太网,可以参考此示例。

2015-11-09

串口调试工具

串口调试工具,非常经典的串口助手,自使用以来,从未出现过任何错误。

2015-11-09

虚拟串口软件

虚拟串口软件,用于在电脑上虚拟一些串口,这样就不用物理串口,也能调试串口程序了。

2015-11-09

读取拨码开关的拨动方向

读取拨码开关的拨动方向,来递增/递减某个值。

2015-11-09

串口调试器.exe

串口调试器 非常好用的串口调试助手。非常经典

2015-11-02

MyCatchScree

MyCatchScree 非常小巧的抓屏工具,无需安装。

2015-11-02

The C Programming Language

The C Programming Language 学C语言的必看教材。

2015-11-01

tps65910 文档

tps65910 文档,里面有rtc的register相关介绍。

2015-09-27

global_mem.c

global_mem.c

2015-08-28

Linux设备驱动(LDD) 中文第三版

Linux设备驱动(LDD) 中文第三版 开发linux驱动的圣经。

2015-08-27

LinuxDeviceDriver_3_en

LinuxDeviceDriver_3_en linux设备驱动 第三版,2.6内核,英文原版。尽情享用吧。

2015-08-27

msp430g2253

msp430g2253

2015-08-15

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除