智能车制作

标题: MC9S12DG128系列例程--SCI [打印本页]

作者: chiusir    时间: 2008-11-21 21:00
标题: MC9S12DG128系列例程--SCI
MC9S12DG128系列例程--SCI
/****************************************************
龙丘MC9S12(DG128)多功能开发板
Designed by Chiu Sir
E-mail:chiusir@163.com
软件版本:V1.1
最后更新:2008年11月20日
------------------------------------
Code Warrior 4.7
Target : MC9S12DG128
Crystal: 16.000Mhz
busclock: 8.000MHz
pllclock:16.000MHz

本程序主要包括以下功能:
1.设置锁相环和总线频率;
2.IO口使用;
3.SCI口使用:提供接收/发送字符、字符串、格式化字符串。
LED计数,根据灯亮可以读取系统循环了多少次
*****************************************************/
#i nclude <hidef.h>      
#i nclude <mc9s12dg128.h>   
#i nclude "LQprintp.h"
#i nclude <ctype.h>
#i nclude <string.h>
#i nclude <stdarg.h>

#pragma LINK_INFO DERIVATIVE "mc9s12dg128b"  

#ifndef  TRUE
#define  TRUE 1
#endif
#ifndef  FALSE
#define  FALSE 0
#endif

#define Baud_9600  55
#define Baud_19200 26  

#define CR_as_CRLF  TRUE             // if true , you can use "\n" to act as CR/LF,
                                     // if false, you have to use "\n\r",but can get a higher speed  
static int do_padding;
static int left_flag;
static int len;
static int num1;
static int num2;
static char pad_character;

unsigned char uart_getkey(void)
{  
   while(!(SCI0SR1&0x80)) ;    //keep waiting when not empty  
   return SCI0DRL;
}
/*
void uart_init(void) {
  SCI0CR2=0x0c;
  SCI0BDH=0x00;//16MHz,19200bps,SCI0BDL=0x1a
  SCI0BDL=0x34;//16MHz,9600bps,SCI0BDL=0x34
}
*/
void uart_putchar(unsigned char ch)
{
  if (ch == '\n')  
  {
      while(!(SCI0SR1&0x80)) ;     
      SCI0DRL= 0x0d;            //output'CR'
     return;
  }
  while(!(SCI0SR1&0x80)) ;       //keep waiting when not empty  
  SCI0DRL=ch;
}

void putstr(char ch[])
{
  unsigned char ptr=0;
  while(ch[ptr]){
      uart_putchar((unsigned char)ch[ptr++]);
  }     
  
}
                                                
static void padding( const int l_flag)
{
   int i;

   if (do_padding && l_flag && (len < num1))
      for (i=len; i<num1; i++)
          uart_putchar( pad_character);
}

static void outs( char* lp)
{
  /* pad on left if needed                          */
  len = strlen( lp);
  padding( !left_flag);

  /* Move string to the buffer                      */
  while (*lp && num2--)  uart_putchar( *lp++);

  /* Pad on right if needed                         */
  len = strlen( lp);
  padding( left_flag);
}

static void reoutnum(unsigned long num, unsigned int negative, const long base )
{
  char* cp;
  char outbuf[32];
  const char digits[] = "0123456789ABCDEF";

  /* Build number (backwards) in outbuf             */
  cp = outbuf;
  do {
    *cp++ = digits[(int)(num % base)];
    } while ((num /= base) > 0);
  if (negative)  *cp++ = '-';
  *cp-- = 0;

  /* Move the converted number to the buffer and    */
  /* add in the padding where needed.               */
  len = strlen(outbuf);
  padding( !left_flag);
  while (cp >= outbuf)
    uart_putchar( *cp--);
  padding( left_flag);
}

static void outnum(long num, const long base ,unsigned char sign)//1, signed  0 unsigned
{   
  unsigned int negative;

  if ( (num < 0L) && sign )
  {  
    negative=1;
    num = -num;
  }
  else negative=0;

  reoutnum(num,negative,base);  
}

static int getnum( char** linep)
{
   int n;
   char* cp;

   n = 0;
   cp = *linep;
   while (isdigit(*cp))
      n = n*10 + ((*cp++) - '0');
   *linep = cp;
   return(n);
}

void printp( char* ctrl, ...)
{
   int long_flag;
   int dot_flag;

   char ch;
   va_list argp;
   va_start( argp, ctrl);
   for ( ; *ctrl; ctrl++) {  
      /* move format string chars to buffer until a  format control is found. */
      if (*ctrl != '%') {
         uart_putchar(*ctrl);
#if CR_as_CRLF==TRUE         
         if(*ctrl=='\n') uart_putchar('\r');
#endif         
         continue;
         }
      /* initialize all the flags for this format.   */
      dot_flag = long_flag = left_flag = do_padding = 0;
      pad_character = ' ';
      num2=32767;  
try_next:
      ch = *(++ctrl);
      if (isdigit(ch)){
         if (dot_flag)
            num2 = getnum(&ctrl);
         else {
            if (ch == '0')
               pad_character = '0';
            num1 = getnum(&ctrl);
            do_padding = 1;
         }
         ctrl--;
         goto try_next;
      }      
      switch (tolower(ch)) {
         case '%':
              uart_putchar( '%');
              continue;  
         case '-':
              left_flag = 1;
              break;  
         case '.':
              dot_flag = 1;
              break;  
         case 'l':
              long_flag = 1;
              break;  
         case 'd':
              if (long_flag ==1 )
              {
                if(ch == 'D')                {outnum( va_arg(argp, unsigned long), 10L , 0);continue;}
                       else  /* ch == 'd' */        {outnum( va_arg(argp, long), 10L,1);continue;}
              }
              else
              {
                if(ch == 'D') {outnum( va_arg(argp, unsigned int),10L,0);continue;}
                else  /* ch == 'd' */        
                {
                  outnum( va_arg(argp, int), 10L,1);
                  continue;
                }
              }                 
         case 'x':    // X 无符号 , x  有符号
              if (long_flag ==1 )
              {
               if(ch == 'X')               
               {
                 outnum( va_arg(argp, unsigned long), 16L,0);
                 continue;
               }
               else  /* ch == 'x' */        
               {
                 outnum( va_arg(argp, long), 16L,1);
                 continue;
               }
              }
              else
              {
               if(ch == 'X')               
                {
                  outnum( va_arg(argp, unsigned int), 16L,0);
                  continue;
                }
                else  /* ch == 'x' */        
                {
                  outnum( va_arg(argp, int), 16L,1);
                  continue;
                }
              } //如果按照16进制打印,将全部按照无符号数进行
              continue;
         case 's':
              outs( va_arg( argp, char*));
              continue;   
         case 'c':
              uart_putchar( va_arg( argp, int));
              continue;  
         default:
              continue;
         }
      goto try_next;
      }
   va_end( argp);
   }




//-----------------------------------------------------
void setbusclock(void)
{   
    CLKSEL=0X00;    //disengage PLL to system
    PLLCTL_PLLON=1;   //turn on PLL
    SYNR=1;         
    REFDV=1;          //pllclock=2*osc*(1+SYNR)/(1+REFDV)=32MHz;
    _asm(nop);          //BUS CLOCK=16M
    _asm(nop);
    while(!(CRGFLG_LOCK==1));   //when pll is steady ,then use it;
    CLKSEL_PLLSEL =1;          //engage PLL to system;
}
//-----------------------------------------------------
static void SCI_Init(void)
{
    SCI0CR2=0x2c; //enable Receive Full Interrupt,RX enable,Tx enable
    SCI0BDH=0x00; //出口波特率为9600
    SCI0BDL=0x68; //SCI0BDL=busclk/(16*SCI0BDL)
                  //busclk  8MHz, 9600bps,SCI0BDL=0x34
                  //busclk 16MHz, 9600bps,SCI0BDL=0x68
                  //busclk 24MHz, 9600bps,SCI0BDL=0x9C
}                 //busclk 32MHz, 9600bps,SCI0BDL=0xD0
//-----------------------------------------------------  
void Dly_ms(int ms)
{
   int ii,jj;
   if (ms<1) ms=1;
   for(ii=0;ii<ms;ii++)
     for(jj=0;jj<2670;jj++);    //busclk:16MHz--1ms
}

void main(void){
  unsigned char LedCnt=0;
  
  setbusclock();  
  SCI_Init();
  DDRB=0xFF;
  PUCR_PUPBE=1;
  EnableInterrupts;  

  for(;;)
  {   
    LedCnt=(LedCnt>0XFE?0:++LedCnt);
    Dly_ms(1000);   //修改延时以修改数据发送频率
   
    //低电平灯亮用这句,注释掉下面那句
    PORTB=~LedCnt;
   
    //高电平灯亮用这句,注释掉上面那句   
    //PORTB=LedCnt;  
    putstr("\n http:/ /shop36265907.taobao.com");
    printp("\n Minute elapsed: %03ds",LedCnt);
  }
}
下面是完整工程,需要的请点击下载:demoSCI.rar

看帖不回是不道德的!
作者: chqs    时间: 2008-11-21 22:17
标题: Re:MC9S12DG128系列例程--SCI
向demo看齐!
作者: wxyz0905    时间: 2008-12-8 23:48
标题: Re:MC9S12DG128系列例程--SCI
<IMG src="http://www.znczz.com/images/Emotions/1.gif"><IMG src="http://www.znczz.com/images/Emotions/1.gif"><IMG src="http://www.znczz.com/images/Emotions/1.gif">
作者: 学做智能车    时间: 2008-12-12 21:20
标题: Re:MC9S12DG128系列例程--SCI
<>支持!!!</P><P>&nbsp;</P>
作者: blueice    时间: 2009-1-14 08:59
标题: Re:MC9S12DG128系列例程--SCI
没用的代码太多了!眼睛花了!但是还是谢谢共享!
作者: chiusir    时间: 2009-1-14 18:40
标题: Re:MC9S12DG128系列例程--SCI
可以去掉printp格式化输出部分,代码量大减,不过用起来不方便,特别是调试的时候
作者: Jacklee    时间: 2009-1-16 19:42
标题: Re:MC9S12DG128系列例程--SCI
还行
作者: nilelixp    时间: 2009-2-16 19:06
感谢
作者: hummer    时间: 2009-3-7 09:32

作者: yangyong1011    时间: 2009-4-17 17:40
谢谢楼主。
作者: liushuiyue    时间: 2009-4-28 20:48
感觉好强啊
作者: zlwestwood    时间: 2009-5-10 17:02
久仰大名
作者: youzaiyong    时间: 2009-5-18 22:15

作者: dtszcr    时间: 2009-5-24 20:29
及时雨啊,呵呵!
作者: xxj2422042    时间: 2009-5-26 11:16
顶上去
作者: taoyang18    时间: 2009-6-8 08:31

作者: 段鹏飞    时间: 2009-6-24 21:35
感谢啊 学习需要 楼主辛苦了
作者: lfm3399    时间: 2009-8-29 09:26
DING!
作者: dong065235    时间: 2009-8-30 21:01
回一个~~顶一下
作者: gallen    时间: 2009-9-5 11:19
刚刚试过SCI,请问一下SPI和Uart串行口通讯有啥区别
作者: j01307    时间: 2009-10-26 17:47
多谢楼主
作者: jothychow    时间: 2009-10-29 11:05
谢了
作者: wangqun    时间: 2009-11-9 16:25
好帖子
作者: wangqun    时间: 2009-11-22 17:38
好贴
作者: zhaolong2009    时间: 2009-11-23 15:17

作者: Cedar    时间: 2009-11-29 09:44
学习学习
作者: 小雨1111    时间: 2010-1-6 12:49
谢谢楼主分享
作者: hezhiyong517    时间: 2010-1-9 19:44

作者: zx5071909    时间: 2010-1-10 08:34
thank you
作者: zx5071909    时间: 2010-1-10 08:34
thank you
作者: chitu200810    时间: 2010-1-21 19:50

作者: 极意旋风    时间: 2010-1-23 18:33
支持!!!
作者: haoming198806    时间: 2010-3-11 17:08
不错
作者: qwasopkl6186    时间: 2010-3-17 20:00
谢谢楼主。
作者: luson1321    时间: 2010-3-18 18:41
有点晕晕的。。。不过谢谢楼主
作者: huangyr    时间: 2010-3-29 21:01
顶你o
作者: welcome    时间: 2010-6-29 20:27
回复 1# chiusir


支持啊 啊啊啊
作者: jcg802564    时间: 2011-3-9 18:14
好啊!!!!1
作者: tsacy    时间: 2011-3-16 00:07

作者: 沧海一轮月    时间: 2011-4-17 20:48
很好。
作者: oecligh_optics    时间: 2011-5-31 16:37

作者: 719852208    时间: 2011-11-18 22:40
谢谢分享
作者: longhunlanxue    时间: 2011-11-20 15:46
从你那买板了、、、
作者: mc9s12dg单片机    时间: 2011-12-28 12:38
谢谢拉
作者: 你好妈32    时间: 2013-2-27 14:21
楼主,40M总线,的9600波特率咋么设置?




欢迎光临 智能车制作 (http://dns.znczz.com/) Powered by Discuz! X3.2