忘備録-備忘録

技術的な備忘録

RX210でRS232Cを使う その2

2015-10-27 08:33:09 | RX210
ルネサス製のRX210マイコンのSCI0を使用したシリアル通信プログラムのサンプルです。
リングバッファと割り込みを使用しています。

  1. /*
  2.  * interrupt_handlers.c のSCI0関連の割り込みをコメントアウトすること
  3.  * // SCI0 ERI0
  4.  * //void Excep_SCI0_ERI0(void){ }
  5.  *
  6.  * // SCI0 RXI0
  7.  * //void Excep_SCI0_RXI0(void){ }
  8.  *
  9.  * // SCI0 TXI0
  10.  * //void Excep_SCI0_TXI0(void){ }
  11.  *
  12.  * // SCI0 TEI0
  13.  * //void Excep_SCI0_TEI0(void){ }
  14.  *
  15.  */
  16. #include "iodefine.h"
  17. #include <stdio.h>
  18. #include <machine.h>
  19. #include "vect.h"
  20. #define PCLK 25            //PクロックMHz
  21. #define TX_ACTIVE 1    //送信動作中
  22. #define TX_INACTIVE 0    //送信停止中
  23. #define TX_RING_BUFF_SIZE    32    //リングバッファのサイズ
  24. #define RX_RING_BUFF_SIZE    32    //リングバッファのサイズ
  25. //リングバッファ
  26. unsigned char rx_buff[RX_RING_BUFF_SIZE];    //受信用
  27. unsigned char tx_buff[TX_RING_BUFF_SIZE];    //送信用
  28. //データポインタ
  29. volatile int ptr_rx_top,ptr_rx_bottom;
  30. volatile int ptr_tx_top,ptr_tx_bottom;
  31. //送信フラグ データ送信中かどうか
  32. volatile int tx_flag = TX_INACTIVE;
  33. /*
  34.  * SCI0初期化
  35.  * 57600bps: 8bit: stop bit 1: Parity none
  36.  * PCLK 25MHz
  37.  */
  38. void SCI_Init (void)
  39. {
  40.     /* ---- SCI interrupt request is disabled ---- */
  41.     IR(SCI0,ERI0) = 0;
  42.     IR(SCI0,RXI0) = 0;
  43.     IR(SCI0,TXI0) = 0;
  44.     IR(SCI0,TEI0) = 0;
  45.     /* ---- Initialization of SCI ---- */
  46.     /* PRCR - Protect Register
  47.     b15:b8 PRKEY - PRC Key Code - A5h (The write value should be A5h to permission writing PRCi bit)
  48.     b7:b4 Reserved - The write value should be 0.
  49.     b1 PRC1 - Protect Bit 1 - Write enabled */
  50.     SYSTEM.PRCR.WORD = 0xA502;
  51.     /* The module stop state of SCIn is canceled */
  52.     MSTP(SCI0) = 0;
  53.     /* Enable write protection */
  54.     SYSTEM.PRCR.WORD = 0xA500;
  55.     /* SCR - Serial Control Register
  56.     b7 TIE - Transmit Interrupt Enable - A TXI interrupt request is disabled
  57.     b6 RIE - Receive Interrupt Enable - RXI and ERI interrupt requests are disabled
  58.     b5 TE - Transmit Enable - Serial transmission is disabled
  59.     b4 RE - Receive Enable - Serial reception is disabled
  60.     b2 TEIE - Transmit End Interrupt Enable - A TEI interrupt request is disabled */
  61.     SCI0.SCR.BYTE = 0x00;
  62.     while (0x00 != (SCI0.SCR.BYTE & 0xF0))
  63.     {
  64.         /* Confirm that bit is actually 0 */
  65.     }
  66.     /* ---- Set the I/O port functions ---- */
  67.     /* Set port output data - High level */
  68.     PORT2.PODR.BIT.B0 = 1;
  69.     /* Set port direction - TXDn is output port, RXDn is input port */
  70.     PORT2.PDR.BIT.B0 = 1;
  71.     PORT2.PDR.BIT.B1 = 0;
  72.     /* Set port mode - Use pin as general I/O port */
  73.     PORT2.PMR.BIT.B1 = 0;
  74.     PORT2.PMR.BIT.B0 = 0;
  75.     /* PWPR - Write-Protect Register
  76.     b7 B0WI - PFSWE Bit Write Disable - Writing to the PFSWE bit is enabled
  77.     b6 PFSWE - PFS Register Write Enable - Writing to the PFS register is enabled
  78.     b5:b0 Reserved - These bits are read as 0. The write value should be 0. */
  79.     MPC.PWPR.BIT.B0WI = 0;
  80.     MPC.PWPR.BIT.PFSWE = 1;
  81.     /* PFS - Pin Function Control Register
  82.     b3:b0 PSEL - Pin Function Select - RXDn, TXDn */
  83.     MPC.P20PFS.BYTE = 0x0A;
  84.     MPC.P21PFS.BYTE = 0x0A;
  85.     /* Enable write protection */
  86.     MPC.PWPR.BIT.PFSWE = 0;
  87.     MPC.PWPR.BIT.B0WI = 1;
  88.     /* Use pin as I/O port for peripheral functions */
  89.     PORT2.PMR.BIT.B1 = 1;
  90.     PORT2.PMR.BIT.B0 = 1;
  91.     /* ---- Initialization of SCI ---- */
  92.     /* Select an On-chip baud rate generator to the clock source */
  93.     SCI0.SCR.BIT.CKE = 0;
  94.     /* SMR - Serial Mode Register
  95.     b7 CM - Communications Mode - Asynchronous mode
  96.     b6 CHR - Character Length - Selects 8 bits as the data length
  97.     b5 PE - Parity Enable - When transmitting : Parity bit addition is not performed
  98.                                           When receiving : Parity bit checking is not performed
  99.     b3 STOP - Stop Bit Length - 1 stop bits
  100.     b2 MP - Multi-Processor Mode - Multi-processor communications function is disabled
  101.     b1:b0 CKS - Clock Select - PCLK clock (n = 0) */
  102.     SCI0.SMR.BYTE = 0x00;
  103.     /* SCMR - Smart Card Mode Register
  104.     b6:b4 Reserved - The write value should be 1.
  105.     b3 SDIR - Transmitted/Received Data Transfer Direction - Transfer with LSB-first
  106.     b2 SINV - Transmitted/Received Data Invert - TDR contents are transmitted as they are.
  107.                                                           Receive data is stored as it is in RDR.
  108.     b1 Reserved - The write value should be 1.
  109.     b0 SMIF - Smart Card Interface Mode Select - Serial communications interface mode */
  110.     SCI0.SCMR.BYTE = 0xF2;
  111.     /* SEMR - Serial Extended Mode Register
  112.     b7:b6 Reserved - The write value should be 0.
  113.     b5 NFEN - Digital Noise Filter Function Enable - Noise cancellation function
  114.                                                               for the RXDn input signal is disabled.
  115.     b4 ABCS - Asynchronous Mode Base Clock Select - Selects 16 base clock cycles for 1-bit period
  116.     b3:b1 Reserved - The write value should be 0. */
  117.     SCI0.SEMR.BYTE = 0x00;
  118.     /* BRR - Bit Rate Register
  119.     Bit Rate: (25MHz/(64*2^(-1)*57600bps))-1=12.56 */
  120.     SCI0.BRR = 13;    /* 57600bps */
  121.     //SCI0.BRR = 40;    /* 19200bps */
  122.     /* ---- Initialization of SCI interrupt ---- */
  123.     /* SCI interrupt priority level is 1 */
  124.     IPR(SCI0, ) = 1;
  125.     /* Interrupt request is cleared (Edge interrupt) */
  126.     IR(SCI0,RXI0) = 0;
  127.     IR(SCI0,TXI0) = 0;
  128.     /* 割り込みの許可 */
  129.     IEN(SCI0, RXI0) = 1;
  130.     IEN(SCI0, ERI0) = 1;
  131.     IEN(SCI0, TXI0) = 1;
  132.     IEN(SCI0, TEI0) = 1;
  133.     /* リングバッファの初期化 */
  134.     ptr_rx_top = ptr_rx_bottom = 0;
  135.     ptr_tx_top = ptr_tx_bottom = 0;
  136.     /* 送受信許可 */
  137.     SCI0.SCR.BIT.RIE = 1;    //受信割込み
  138.     SCI0.SCR.BIT.TIE = 1;    //送信割込み
  139.     SCI0.SCR.BIT.RE = 1;    //受信動作開始
  140.     SCI0.SCR.BIT.TE = 0;
  141. }
  142. /*
  143.  * 受信エラー割り込み
  144.  */
  145. /* SSR - Serial Status Register
  146. b7:b6 Reserved - The read value is undefined. The write value should be 1.
  147. b5 ORER - Overrun Error Flag - An overrun error has occurred
  148. b4 FER - Framing Error Flag - A framing error has occurred
  149. b3 PER - Parity Error Flag - A parity error has occurred */
  150. #define SSR_ERROR_FLAGS (0x38)
  151. void Excep_SCI0_ERI0(void)
  152. {
  153.     volatile char c;
  154.     c = SCI0.RDR;    //ダミーリード
  155.     SCI0.SSR.BYTE = (SCI0.SSR.BYTE & ~SSR_ERROR_FLAGS) | 0xC0;    //エラーフラグクリア
  156. }
  157. /*
  158.  * 受信バッファフル割込み
  159.  */
  160. void Excep_SCI0_RXI0(void)
  161. {
  162.     /* Read data */
  163.     rx_buff[ptr_rx_top] = SCI0.RDR;
  164.     ptr_rx_top++;
  165.     ptr_rx_top = ptr_rx_top % RX_RING_BUFF_SIZE;
  166. }
  167. /*
  168.  * 送信バッファエンプティ割込み
  169.  */
  170. void Excep_SCI0_TXI0(void)
  171. {
  172.     if( ptr_tx_bottom == ptr_tx_top ) { //送信するデータがない
  173.         SCI0.SCR.BIT.TEIE = 1;            //送信終了割り込みの発生を待つ
  174.     } else {
  175.     /* Write the character out */
  176.         SCI0.TDR = tx_buff[ptr_tx_bottom];
  177.         ptr_tx_bottom++;
  178.         ptr_tx_bottom = ptr_tx_bottom % TX_RING_BUFF_SIZE;
  179.     }
  180. }
  181. /*
  182.  * 送信終了割り込み
  183.  */
  184. void Excep_SCI0_TEI0 (void)
  185. {
  186.     SCI0.SCR.BIT.TE = 0;    //送信停止
  187.     IR(SCI0,TXI0) = 0;        //割り込みフラグクリア
  188.     SCI0.SCR.BIT.TEIE = 0;    //送信完了割込み停止
  189.     tx_flag = TX_INACTIVE;    //送信回路フラグを停止に
  190. }
  191. /*
  192.  * データの送信
  193.  */
  194. void SCI_put(unsigned char output_char)
  195. {
  196.     int tmp;
  197.     tmp = ptr_tx_top + 1;
  198.     tmp = tmp % TX_RING_BUFF_SIZE;
  199.     while(tmp == ptr_tx_bottom) ;    //バッファに空きができるまで待つ
  200.     tx_buff[ptr_tx_top] = output_char;
  201.     ptr_tx_top++;
  202.     ptr_tx_top = ptr_tx_top % TX_RING_BUFF_SIZE;
  203.     if(tx_flag == TX_INACTIVE) {
  204.         tx_flag = TX_ACTIVE;    //送信回路フラグを動作に
  205.         SCI0.SCR.BIT.TE = 1;    //送信割込み許可
  206.      SCI0.SCR.BIT.TEIE = 0;    //送信完了割込み停止
  207.     }
  208. }
  209. void charput(unsigned char c)
  210. {
  211.     //while(IR(SCI0,TXI0)==0) ;
  212.     if(c=='\r' || c=='\n') {
  213.         SCI_put('\r');
  214.         SCI_put('\n');
  215.     } else {
  216.         SCI_put(c);
  217.     }
  218. }
  219. /* データの受信 バッファに受信したデータがなければ受信するまで待つ */
  220. unsigned int SCI_get(void)
  221. {
  222.     unsigned char c;
  223.     while(ptr_rx_bottom == ptr_rx_top); //データを受信するまで待つ
  224.     c = rx_buff[ptr_rx_bottom];
  225.     ptr_rx_bottom++;
  226.     ptr_rx_bottom = ptr_rx_bottom % RX_RING_BUFF_SIZE;
  227.     return c;
  228. }
  229. unsigned int charget(void)
  230. {
  231.      return SCI_get();
  232. }
  233. /*
  234.  * 文字列の出力
  235.  */
  236. void printString(char *s)
  237. {
  238.     while( *s != 0 ) {
  239.         charput(*s);
  240.         s++;
  241.     }
  242. }
  243. /*
  244.  * printf関数で使用
  245.  */
  246. int _write(int file,char *ptr,int len)
  247. {
  248.     int i;
  249.     for(i=0;i<len;i++) {
  250.         charput(ptr[i]);
  251.     }
  252.     return len;
  253. }
  254. /*
  255.  * scanf関数で使用
  256.  */
  257. int _read (int file, char *ptr, int len)
  258. {
  259.     *ptr = charget();
  260.      return 1;
  261. }
  262. void main(void)
  263. {
  264.     char buf;
  265.     change_oscillation_PLL();            //クロックソースPLL
  266.     SCI_Init ();
  267.     setpsw_i();                            // 割込み許可 clrpsw_i()割込み禁止
  268.     printString("RS232C test program\n");
  269.     printString("use SCI0123\n");
  270.     while(1) {
  271.         buf = charget();
  272.         _write(0,&buf,1);
  273.     }
  274. }


change_oscillation_PLL()関数
/*
 *  動作クロックをPLLで50MHzに設定
*/
void change_oscillation_PLL(void)
{
	unsigned int i;

	/* ---- Enable write protection ---- */
    /* PRCR - Protect Register
    b15:b8  PRKEY - PRC Key Code - A5h
                  (The write value should be A5h to permission writing PRCi bit)
    b7:b4   Reserved - The write value should be 0.
    b3      PRC3 - Protect Bit 3 - Write disabled
    b2      PRC2 - Protect Bit 2 - Write enabled
    b1      PRC1 - Protect Bit 1 - Write enabled
    b0      PRC0 - Protect Bit 0 - Write enabled */
    SYSTEM.PRCR.WORD = 0xA507;

    /* ---- Set the VRCR register ---- */
    SYSTEM.VRCR = 0x00;

    /* ----  Set the main clock oscillator drive capability ---- */
    /* MOFCR - Main Clock Oscillator Forced Oscillation Control Register
    b7       Reserved - The write value should be 0.
    b6       MOSEL    - Main Clock Oscillator Switch - Resonator
    b5:b4    MODRV2   - Main Clock Oscillator Drive Capability Switch 2
                      - 16 MHz to 20 MHz
    b3:b1    MODRV    - Main Clock Oscillator Drive Capability Switch
                      - 16 MHz to 20 MHz non-lead type ceramic resonator
    b0       Reserved - The write value should be 0. */
    SYSTEM.MOFCR.BYTE = (0x30);	/* Drive capability : 20 MHz crystal resonator */

    /* ---- Set wait time until the main clock oscillator stabilizes ---- */
    /* MOSCWTCR - Main Clock Oscillator Wait Control Register
    b7:b5    Reserved - The write value should be 0.
    b4:b0    MSTS     - Main Clock Oscillator Waiting Time
                      - Wait time is 131072 cycles (approx. 6.55 ms). */
    SYSTEM.MOSCWTCR.BYTE = (0x0D);	/* Wait control register : 131072 cycles (approx. 6.55 ms) */

    /* ---- Operate the main clock oscillator ---- */
    /* MOSCCR   - Main Clock Oscillator Control Register
    b7:b1    Reserved - The write value should be 0.
    b0       MOSTP    - Main Clock Oscillator Stop - Main clock oscillator is operating. */
    SYSTEM.MOSCCR.BYTE = 0x00;

    while (0x00 != SYSTEM.MOSCCR.BYTE)
    {
        /* Confirm that the written value can be read correctly. */
    }


    /* ---- Wait processing for the clock oscillation stabilization ---- */
    for(i=0;i<100;i++) nop();

    /* ---- Set the PLL division ratio and multiplication factor ---- */
    /* PLLCR - PLL Control Register
    b15:b13  Reserved - The write value should be 0.
    b12:b8   STC      - Frequency Multiplication Factor Select
                      - Frequency multiplication factor is multiply-by-10.
    b7:b2    Reserved - The write value should be 0.
    b1:b0    PLIDIV   - PLL Input Frequency Division Ratio Select
                      - PLL input division ratio is divide-by-2. */
    SYSTEM.PLLCR.WORD = (0x0901);	/* Division ratio and multiplication factor : divide-by-2, multiply-by-10 */

    /* ---- Set wait time until the PLL clock oscillator stabilizes ---- */
    /* PLLWTCR - PLL Wait Control Register
    b7:b5    Reserved - The write value should be 0.
    b4:b0    PSTS     - PLL Waiting Time
                      - Wait time is 65536 cycles (approx. 655.36 us). */
    SYSTEM.PLLWTCR.BYTE = (0x09);	/* Wait control register : 65536 cycles (approx. 655.36 us) */

    /* ---- Operate the PLL clock oscillator ---- */
    /* PLLCR2 - PLL Control Register 2
    b7:b1    Reserved - The write value should be 0.
    b0       PLLEN    - PLL Stop Control - PLL is operating. */
    SYSTEM.PLLCR2.BYTE = 0x00;

    /* ---- Wait processing for the clock oscillation stabilization ---- */
    for(i=0;i<100;i++) nop();

    /* ---- Set the operating power control mode ---- */
    /* OPCCR - Operating Power Control Register
    b7:b5   Reserved - The write value should be 0.
    b4      OPCMTSF  - Operating Power Control Mode Transition Status Flag
    b3      Reserved - The write value should be 0.
    b2:b0   OPCM     - Operating Power Control Mode Select - High-speed operating mode */
    SYSTEM.OPCCR.BYTE = (0x00);          /* High-speed operating mode */

    while (0 != SYSTEM.OPCCR.BIT.OPCMTSF)
    {
        /* Confirm that the operation power control mode transition completed. */
    }

    /* ---- Set the internal clock division ratio ---- */
    /* SCKCR - System Clock Control Register
    b31:b28 FCK      - FlashIF Clock(FCLK) Select - divide-by-4
    b27:b24 ICK      - System Clock (ICLK) Select - divide-by-2
    b23     PSTOP1   - BCLK Pin Output Control    - disabled. (Fixed high)
    b22:b20 Reserved - The write value should be 0.
    b19:b16 BCK      - External Bus Clock (BCLK) Select - divide-by-4
    b15:b12 Reserved - The write value should be 0001b.
    b10:b8  PCLKB    - Peripheral Module Clock B(PCLKB) Select - divide-by-4
    b7:b4   Reserved - The write value should be 0001b.
    b3:b0   PCLKD    - Peripheral Module Clock D(PCLKD) Select - divide-by-2 */
    SYSTEM.SCKCR.LONG = 0x21821211;	/* ICLK,PCLKD: divide-by-2 PCLKB,BCLK,FCLK: divide-by-4 */

    while (0x21821211 != SYSTEM.SCKCR.LONG)
    {
         /* Confirm that the written value can be read correctly. */
    }

    /* ---- Set the BCLK pin output ---- */
    /* BCKCR - External Bus Clock Control Register
    b7:b1   Reserved - The write value should be 0.
    b0      BCLKDIV  - BCLK Pin Output Select - divide-by-2 */
    SYSTEM.BCKCR.BYTE = 0x01;

    while (0x01 != SYSTEM.BCKCR.BYTE)
    {
        /* Confirm that the written value can be read correctly. */
    }

    /* ---- Set the internal clock source ---- */
    /* SCKCR3 - System Clock Control Register 3
    b15:b11 Reserved - The write value should be 0.
    b10:b8  CKSEL    - Clock Source Select - PLL circuit is selected.
    b7:b1   Reserved - The write value should be 0. */
    SYSTEM.SCKCR3.WORD = (0x0400);	/* PLL */

    while ((0x0400) != SYSTEM.SCKCR3.WORD)
    {
        /* Confirm that the written value can be read correctly. */
    }

    /* ---- Disable write protection ---- */
    /* PRCR - Protect Register
    b15:b8 PRKEY - PRC Key Code - A5h
                  (The write value should be A5h to permission writing PRCi bit)
    b2     PRC2 - Protect Bit 2 - Write disabled
    b1     PRC1 - Protect Bit 1 - Write disabled
    b0     PRC0 - Protect Bit 0 - Write disabled */
    SYSTEM.PRCR.WORD = 0xA500;

}
</pre>



最新の画像もっと見る

2 コメント

コメント日が  古い順  |   新しい順
RX210でRS232Cを使う (玄 保成)
2015-12-17 19:46:33
教えてください
RX210でRS232Cを使う その2で
#include "iodefine.h"

/* ---- Set the VRCR register ---- */
SYSTEM.VRCR = 0x00; ←ここでエラーが出ます
VRCRが無いというエラーです
どう定義したらいいのでしょうか?
CPUは RX-210です

簡単なことですみません
メールは tabu512@yahoo.co.jp です
返信する
感謝です (sei10)
2016-04-21 13:52:17
初めまして

RX210のシリアル通信サンプルプログラムを探してここにたどり着きました。

ここのサンプルのおかげで簡単に動かすことができました。ありがとうございました。
返信する

コメントを投稿