自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

韦海涛的博客

万物皆有裂痕,那是光照进来的地方。

  • 博客(3)
  • 资源 (1)
  • 收藏
  • 关注

原创 zigbee点对点串口收发

#include "hal_defs.h"#include "hal_cc8051.h"#include "hal_int.h"#include "hal_mcu.h"#include "hal_board.h"#include "hal_led.h"#include "hal_rf.h"#include "basic_rf.h"#include "hal_uart.h" #inc

2017-06-11 19:47:42 3263

原创 zigbee改变pandid和channel

void ChannelPanidInit (void) { uint8 channel; //定义信道 uint8 buf[2]; //定义PanID channel = zb_Readchannel(); //读取信道号 if(channel != 11) { zb_Readpandid(buf); if((buf[0] != 0x

2017-06-11 19:41:25 3730 2

原创 数据结构与算法(双向链表)

#include <stdio.h>#include <stdlib.h>//用户自定义双向链表typedef struct node{ int num; struct node *prior;//前指针 struct node *next;//后指针}stud;//指针函数stud* create(int n){ stud *p,*h,*s;

2017-06-11 19:33:54 2791

空空如也

空空如也

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

TA关注的人

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