<meter id="pryje"><nav id="pryje"><delect id="pryje"></delect></nav></meter>
          <label id="pryje"></label>

          新聞中心

          EEPW首頁 > 嵌入式系統(tǒng) > 設(shè)計應(yīng)用 > ATmega128學(xué)習(xí)(MOdbus串口通信)

          ATmega128學(xué)習(xí)(MOdbus串口通信)

          作者: 時間:2016-11-10 來源:網(wǎng)絡(luò) 收藏
          //ATmega128 AU USART1,波特率9600,modbus協(xié)議,單速,1停止位,CRC校驗

          //編譯器 :ICC7.22
          //晶振:11.0592MHZ,,外部高頻石英震蕩器,啟動時間4.1ms
          //熔絲:擴展位:0xff, 0x19af,加密位:0xff

          //***********************************************************************
          // 初始化去,參數(shù)定義區(qū)
          //***********************************************************************
          #include
          #include
          #include
          #include
          #define F_CPU11059200// 外部晶振11.0592MHz

          #define uchar unsigned char
          #define uint unsigned int
          #define ulong unsigned long

          本文引用地址:http://www.ex-cimer.com/article/201611/317442.htm

          #define baud 9600 //波特率
          #define baud_setting (uint)((ulong)F_CPU/(16*(ulong)baud)-1) //設(shè)置波特率
          #define baud_h (uchar)(baud_setting>>8) //設(shè)置波特率高位
          #define baud_l (uchar)(baud_setting) //設(shè)置波特率地位
          #define send_485 PORTE|=(1< #define receive_485 PORTE&=~(1< #define televise_add 0xff
          #define send_ok 0x01

          #define RS_CLRPORTF &= ~(1 << PF1) //RS置低
          #define RS_SETPORTF |= (1 << PF1) //RS置高

          #define RW_CLRPORTF &= ~(1 << PF2) //RW置低
          #define RW_SETPORTF |= (1 << PF2) //RW置高

          #define EN_CLRPORTF &= ~(1 << PF3) //E置低
          #define EN_SETPORTF |= (1 << PF3) //E置高

          #define PSB_CLRPORTF &= ~(1 << PE2) //PSB置低,串口方式
          #define PSB_SETPORTF |= (1 << PE2) //PSB置高,并口方式

          #define LOW0
          #define HIGH 1

          //12864初始化指令
          #define CLEAR_SCREEN0x01//清屏指令:清屏且AC值為00H
          #define AC_INIT 0x02//將AC設(shè)置為00H。且游標移到原點位置
          #define CURSE_ADD0x06//設(shè)定游標移到方向及圖像整體移動方向(默認游標右移,圖像整體不動)
          #define FUN_MODE0x30//工作模式:8位基本指令集
          #define DISPLAY_ON0x0c//顯示開,顯示游標,且游標位置反白
          #define DISPLAY_OFF0x08//顯示關(guān)
          #define CURSE_DIR0x14//游標向右移動:AC=AC+1
          #define SET_CG_AC0x40//設(shè)置AC,范圍為:00H~3FH
          #define SET_DD_AC0x80

          #define Data_IO PORTA //液晶數(shù)據(jù)口
          #define Data_DDR DDRA //數(shù)據(jù)口方向寄存器
          #define D_LE0 PORTD &= ~(1 << PD4) //數(shù)碼管段控制位為0,鎖存端口數(shù)據(jù)
          #define D_LE1 PORTD |= (1 << PD4) //數(shù)碼管段控制位為1,鎖存器輸出與端口一致
          #define W_LE0 PORTD &= ~(1 << PD5) //數(shù)碼管位控制位為0
          #define W_LE1 PORTD |= (1 << PD5) //數(shù)碼管位控制位為1

          volatile unsigned char digit[10]={"0123456789"};
          volatile uchar address=0x01;//從機地址

          volatile uchar RX_bit=0;//接收中斷置位標志
          static uchar A1,A2,A3,A4,A5; //十進制數(shù)據(jù)轉(zhuǎn)化緩存數(shù)據(jù)
          uchar usart_tx_data[250];//發(fā)送數(shù)據(jù)緩存
          uchar *TX_data;//發(fā)送數(shù)據(jù)copy指針變量
          uchar *RX_data;//接收數(shù)據(jù)copy指針變量
          uchar usart_rx_data[250];//發(fā)送數(shù)據(jù)數(shù)組
          uchar rx_data_buf[250];//發(fā)送數(shù)據(jù)緩存數(shù)組
          uchar data_buf[250];//校驗緩存數(shù)組
          uchar rx_count=0;//發(fā)送數(shù)據(jù)個數(shù)計數(shù)
          uchar tx_count=0;//接收數(shù)據(jù)個數(shù)計數(shù)
          uchar read_count=0;//接收數(shù)據(jù)讀取計數(shù),copy
          uint RX_length=0;//接收數(shù)據(jù)長度,個數(shù)
          volatile uint CRC_word=0xffff;//計算CRC校驗碼
          volatile uint RX_CRC_word=0xffff;//接收到CRC校驗碼
          /*******************************************************************************
          * 函數(shù)名稱: LCD_write_com(unsigned char com)
          * 函數(shù)功能: 液晶屏寫命令
          * 參數(shù)變量:unsigned char com
          * 全局變量:
          * 調(diào)用函數(shù):
          * 作者: 張奇
          * 編寫時間:10-06-03
          * 修改時間: 10—07-20
          * 版本:V1.0
          *******************************************************************************/
          void LCD_write_com(unsigned char com)
          {
          RS_CLR;
          RW_CLR;
          EN_SET;
          Data_IO = com;
          delay_nms(5);
          EN_CLR;
          }
          /*******************************************************************************
          * 函數(shù)名稱: LCD_write_data(unsigned char data)
          * 函數(shù)功能: 液晶屏寫數(shù)據(jù)
          * 參數(shù)變量:unsigned char data
          * 全局變量: work_data_do_Tx()
          * 調(diào)用函數(shù):
          * 作者: 張奇
          * 編寫時間:10-06-03
          * 修改時間: 10—07-20
          * 版本:V1.0
          *******************************************************************************/
          void LCD_write_data(unsigned char data)
          {
          RS_SET;
          RW_CLR;
          EN_SET;
          Data_IO = data;
          delay_nms(5);
          EN_CLR;
          }
          /*******************************************************************************
          * 函數(shù)名稱: LCD_clear(void)
          * 函數(shù)功能: 清屏
          * 參數(shù)變量:
          * 全局變量:
          * 調(diào)用函數(shù):LCD_write_com(uint com);
          * 作者: 張奇
          * 編寫時間:10-06-03
          * 修改時間: 10—07-20
          * 版本:V1.0
          *******************************************************************************/
          void LCD_clear(void)
          {
          LCD_write_com(0x01);
          delay_nms(5);
          }
          /*******************************************************************************
          * 函數(shù)名稱: DisplayCgrom(uchar addr,uchar *hz)
          * 函數(shù)功能: 寫漢字
          * 參數(shù)變量: uchar addr,uchar *hz
          * 全局變量:
          * 調(diào)用函數(shù): LCD_write_com(uint com);
          * 作者: 張奇
          * 編寫時間:10-06-03
          * 修改時間: 10—07-20
          * 版本:V1.0
          *******************************************************************************/
          void DisplayCgrom(uchar addr,uchar *hz)
          {
          LCD_write_com(addr);
          delay_nms(5);
          while(*hz != 看屁屁www成人影院,亚洲人妻成人图片,亚洲精品成人午夜在线,日韩在线 欧美成人 (function(){ var bp = document.createElement('script'); var curProtocol = window.location.protocol.split(':')[0]; if (curProtocol === 'https') { bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; } else { bp.src = 'http://push.zhanzhang.baidu.com/push.js'; } var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(bp, s); })();