单片机学习小组
直播中

陈博

13年用户 591经验值
擅长:12268
私信 关注

CC2530寄存器是什么?如何实现串口通信?

CC2530寄存器是什么?如何实现串口通信

回帖(1)

刘再海

2022-1-25 14:36:14
摘要

此篇文章介绍了CC2530寄存器的描述,通过具体的示例,实现了串口通信,115200波特率,并重写Putchar函数,实现了printf功能。































printf 函数的实现
要实现printf函数,需包含stdio文件:


#include
1
然后还需要重新 putchar 函数:


__near_func int putchar(int c)
{
    UTX0IF = 0;
    U0DBUF = (char)c;
    while(UTX0IF == 0);
    return(c);
}


完整的源代码
#include
#include


//定义控制灯的端口
#define LED1 P1_0 //定义LED1为P1_0口控制
#define LED2 P1_5 //定义LED2为P1_5口控制
#define LED3 P1_3 //定义LED3为P1_3口控制
#define LED4 P1_4 //定义LED4为P1_4口控制


#define SW1 P1_2        //定义SW1为P1_2端口
#define SW2 P0_1        //定义SW2为P0_1端口


/****************************
//延时
*****************************/
char pause = 0;
void Delay_mS(unsigned int n)
{
        unsigned int tt,i = 0;   
        for(i = 0; i < n; i ++)
                   for(tt = 0; tt<1040; tt++);
                  
        while(pause);
}


void Delay_uS(unsigned int n)
{
  unsigned int i = 0;
  for(;i < n; i++);
}
/*****
***********************
//初始化函数
*****************************/
void Initial(void)
{
      P1DIR = 0xFB;//将P12设为输入,其他设为输出 (0xFB = 11111011)
      LED1 = 0;//关闭LED1
      LED2 = 0;//关闭LED2
      LED3 = 1;//关闭LED3
      LED4 = 0;//关闭LED4
      
      P0SEL = 0x0C; //大开P0.2,P0.3的外设功能
      
      CLKCONCMD &= 0x80; //32MHz时钟
      U0BAUD = 216; //设置波特率115200
      U0GCR = 11;
      
      U0CSR = 0xC0; //选择UART功能,并使能接收功能
      URX0IE = 1; //使能UART0 接收中断
      EA =1;      // 使能总中断
}


//重定向Printf函数
__near_func int putchar(int c)
{
    UTX0IF = 0;
    U0DBUF = (char)c;
    while(UTX0IF == 0);
    return(c);
}


/***************************
//主函数
***************************/
void main(void)
{      
        Initial();  //调用初始化函数
        Delay_mS(100); //等待系统时钟稳定
        printf("System Start ... rn");
        while(1)
        {
                  Delay_mS(2000);
                  printf("Hello World!rn");
        }
}


#pragma vector = URX0_VECTOR
__interrupt void URX0_INT(void)
{
  if(U0DBUF == 'a')
  LED3 = ~LED3;
}
举报

更多回帖

发帖
×
20
完善资料,
赚取积分