/***************************************/
/* CNPF */
/* CC2540 BlueTooth 4.0 学习例程 */
/*例程名称: 串口通讯1 */
/*建立时间:2018/05/25 */
/*描述:在串口调试助手上可以看到不停地 */
/* 收到CC2540发过来的: */
/* Hello BlueTooth4.0 */
/***************************************/
#include<ioCC2540.h>
#include <string.h>
#define uint unsigned int
#define uchar unsigned char
//定义LED的端口
#define LED1 P1_0
#define LED2 P1_1
//函数声明
void Delay_ms(uint);
void initUART(void);
void UartSend_String(char *Data,int len);
char Txdata[19]; //存放"Hello BlueTooth4.0\n"共19个字符串
|