打印
[DemoCode下载]

IO软件模拟串口

[复制链接]
491|4
手机看帖
扫描二维码
随时随地手机跟帖
跳转到指定楼层
楼主
antusheng|  楼主 | 2020-3-26 20:39 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
EC_M051_SoftwareUART_V1.00.zip (2.58 MB)


使用特权

评论回复
沙发
antusheng|  楼主 | 2020-3-26 20:49 | 只看该作者
/**************************************************************************//**
* [url=home.php?mod=space&uid=288409]@file[/url]     SoftwareUARRT.c
* [url=home.php?mod=space&uid=895143]@version[/url]  V1.00
* [url=home.php?mod=space&uid=247401]@brief[/url]    M051 Using GPIO emulation UART driver source file
*
* @note
* Copyright (C) 2019 Nuvoton Technology Corp. All rights reserved.
******************************************************************************/
#include "SoftwareUART.h"

/*---------------------------------------------------------------------------------------------------------*/
/* Global variables                                                                                        */
/*---------------------------------------------------------------------------------------------------------*/
sUART_Config  g_sSoftwareUART_Config;
sUART_Config *g_psSoftwareUART_Config;
uint16_t g_au16TxBuff[256];
uint16_t g_au16RxBuff[256];

/*---------------------------------------------------------------------------------------------------------*/
/* Init SoftwareUART                                                                                       */
/*---------------------------------------------------------------------------------------------------------*/
void SoftwareUART_Init(sUART_Config *psConfig)
{
    /* Configure P2.6 as Input mode(Rx) */
    GPIO_SetMode(P2, BIT6, GPIO_PMD_INPUT);
    /* Configure P2.7 as Output mode(Tx) */
    GPIO_SetMode(P2, BIT7, GPIO_PMD_OUTPUT);
    /* Initial the SoftwareUART configuration setting */
    SoftwareUART_ConfigInit(psConfig);
       
    /* Configure SoftwareUART and set SoftwareUART baudrate */
    SoftwareUART_Open(psConfig,115200);
       
}

/*---------------------------------------------------------------------------------------------------------*/
/* Init SoftwareUART configuration                                                                         */
/*---------------------------------------------------------------------------------------------------------*/
void SoftwareUART_ConfigInit(sUART_Config *psConfig)
{
  
        g_psSoftwareUART_Config = psConfig;
        psConfig->u32BaudRate = 0;
        psConfig->u8DataBits = 0;
        psConfig->u8Parity = 0;
        psConfig->u8StopBit = 0;
        psConfig->u8RxStatus = eRxIdel;
        psConfig->u8TxStatus = eTxIdel;
        psConfig->u8CommunBitsLen = 0;
        psConfig->pu16TxBuff = &g_au16TxBuff[0];
        psConfig->pu16RxBuff = &g_au16RxBuff[0];
        psConfig->u32SendLen = 0;
        psConfig->u32ReceiveLen = 0;

}

/*---------------------------------------------------------------------------------------------------------*/
/* Init SoftwareUART interface                                                                             */
/*---------------------------------------------------------------------------------------------------------*/
void SoftwareUART_Open(sUART_Config *psConfig,uint32_t u32BaudRate)
{
          uint32_t u32TimePeriodic;
       
          psConfig->u32BaudRate = u32BaudRate;
       
          /* Setting the UART Rx bit rate */
          u32TimePeriodic = psConfig->u32BaudRate*2;
          /* Open Timer0 frequency in periodic mode, and enable interrupt */
          TIMER_Open(TIMER0,TIMER_PERIODIC_MODE,u32TimePeriodic);
          /* Enable Timer0 INT */
          TIMER_EnableInt(TIMER0);

          /* Setting the UART Tx bit rate */
          u32TimePeriodic  =  psConfig->u32BaudRate;  
          /* Open Timer0 frequency in periodic mode, and enable interrupt */
          TIMER_Open(TIMER1,TIMER_PERIODIC_MODE,u32TimePeriodic);
          /* Enable Timer0 INT */
          TIMER_EnableInt(TIMER1);

          SoftwareUART_DataFormartConfig(psConfig);
       
}       

/*---------------------------------------------------------------------------------------------------------*/
/* SoftwareUART data format setting                                                                        */
/*---------------------------------------------------------------------------------------------------------*/
void SoftwareUART_DataFormartConfig(sUART_Config *psConfig)
{
       
        psConfig->u8DataBits = 8;                /* Setting data length is 8 bits */
        psConfig->u8Parity = PARITY_NONE;        /* No Parity */
        psConfig->u8StopBit = STOP_BIT_1;        /* 1 Stop bit */
        psConfig->u8TxLatency = 2;               /* Transmission interval is 2 bits rate */
        psConfig->u32SendLen = 16;               /* Send 16 bytes(Tx) */
        psConfig->u32ReceiveLen = 16;            /* Receive 16 bytes(Rx) */
        /*Building UART Tx serial number*/
        BuildTxDataPattern(psConfig);
        /* Configure the parity bit */
        SoftwareUART_ParityBitConfig(psConfig);
        /* Configure the stop bit */
        SoftwareUART_StopBitConfig(psConfig);

        psConfig->u8CommunBitsLen = psConfig->u8DataBits;

  if(psConfig->u8Parity != PARITY_NONE)
    psConfig->u8CommunBitsLen += 1;     /* Parity bit */
  if(psConfig->u8StopBit != STOP_BIT_1)  
    psConfig->u8CommunBitsLen += 3;    /* Start bit + 2 Stop bits */
  else
    psConfig->u8CommunBitsLen += 2;    /* Start bit + 1 Stop bit*/

}
/*---------------------------------------------------------------------------------------------------------*/
/* SoftwareUART Tx Send Data                                                                               */
/*---------------------------------------------------------------------------------------------------------*/
void SoftwareUART_SendData(sUART_Config *psConfig)
{
   uint32_t u32Index;
         uint32_t u16SendData;
   /* Enable Timer1 NVIC */
   NVIC_EnableIRQ(TMR1_IRQn);
   /* Start Timer1 counting */
   TIMER_Start(TIMER1);

         psConfig->u8TxStatus = eTxIdel;
         psConfig->u8TxTiming =0;
   for(u32Index=0 ;u32Index < psConfig->u32SendLen ;u32Index++)
   {
                GPIO_UART_TX = 1;
                u16SendData = psConfig->pu16TxBuff[u32Index];
                while( psConfig->u8TxStatus != eTxActive){};
                psConfig->u8TxStatus = eTxSendData;
          
                /* Use TIMER1 to emulate the bit rate of UART transmission */
                do{       
        psConfig->u8TxTiming =0;

        if((u16SendData & 0x01) == 0x01)
           GPIO_UART_TX =1;
        else
           GPIO_UART_TX =0;
        u16SendData = u16SendData >> 1;
        while(psConfig->u8TxTiming == 0){};
       /* Total bits Length(start bit(1) + data bits(5~8) + parity bit(0~1)+ stop bit(1~2)) */
      }while(psConfig->u8TxSendCount <  (psConfig->u8CommunBitsLen+ psConfig->u8TxLatency ));
               
                 psConfig->u8TxStatus = eTxIdel;
                 psConfig->u8TxSendCount =0;
         
         }               
                       
         /* Disable Timer1 NVIC */
          NVIC_DisableIRQ(TMR1_IRQn);
          /* Stop Timer1 counting */
          TIMER_Stop(TIMER1);
}       
/*---------------------------------------------------------------------------------------------------------*/
/* SoftwareUART Rx Receive Data                                                                            */
/*---------------------------------------------------------------------------------------------------------*/
void SoftwareUART_ReadData(sUART_Config *psConfig)
{
    uint32_t u32Index;
    uint8_t u8RxCount;
    /* Enable Timer0 NVIC */
    NVIC_EnableIRQ(TMR0_IRQn);
    /* Start Timer0 counting */
    TIMER_Start(TIMER0);

    for(u32Index=0 ;u32Index < psConfig->u32ReceiveLen ;u32Index++)
    {
      u8RxCount = 0;
      /* Use TIMER0 to emulate the bit rate of UART reception  */
      psConfig->u8RxTiming =0;

      /* Wait to Receive the start bit */
      while(GPIO_UART_RX == 1){};
      psConfig->u8RxStatus = eRxRcvData;                                 
        do{

      while(psConfig->u8RxTiming == 0){};
      if(GPIO_UART_RX == 0)
        psConfig->pu16RxBuff[u32Index] |= (0 << u8RxCount);
      else
        psConfig->pu16RxBuff[u32Index] |= (1 << u8RxCount);
      psConfig->u8RxTiming =0;
      while(psConfig->u8RxTiming == 0){};
      psConfig->u8RxTiming =0;
      u8RxCount++;
      /* Total bits length(start bit(1) + data bits(5~8) + parity bit(0-1)+ stop bit(1~2)) */
     }while(u8RxCount < psConfig->u8CommunBitsLen);
     u8RxCount =0;
                 /* End of reception */
     psConfig->u8RxStatus = eRxIdel;
     psConfig->u8RxTiming =0;

          }

     /* Disable Timer0 NVIC */
     NVIC_DisableIRQ(TMR0_IRQn);
     /* Stop Timer0 counting */
     TIMER_Stop(TIMER0);
          
         
         for(u32Index=0 ;u32Index < psConfig->u32ReceiveLen ;u32Index++)
         {
         SoftwareUART_ReceiveDateParse(psConfig,u32Index);
         psConfig->pu16RxBuff[u32Index] = 0;
         }
         
}       

/*---------------------------------------------------------------------------------------------------------*/
/* Parse reduction receive data                                                                            */
/*---------------------------------------------------------------------------------------------------------*/
void SoftwareUART_ReceiveDateParse(sUART_Config *psConfig,uint32_t u32Index)
{
   uint8_t u8ParityCheck;
         uint8_t u8TempData;
         uint8_t u8DataMask;
         uint8_t u8ParityBit;
         uint8_t u8StopBit;

    /*Get the Parity bits number*/
    u8DataMask = GetDataMsk(psConfig);

    /*Check start bit*/
    if((psConfig->pu16RxBuff[u32Index] & 0x01) !=0)
    {
       printf("Start Bit Error\n");
    }
                 /*Remove start bit */
    u8TempData = ((psConfig->pu16RxBuff[u32Index]>>1) & u8DataMask);

    if(psConfig->u8Parity != PARITY_NONE)
    {
      /*Get the parity number */
      u8ParityCheck = GetParityBitsNumber(psConfig,u8TempData);
      /*Get Parity bit*/
      u8ParityBit = ((psConfig->pu16RxBuff[u32Index] >> (psConfig->u8DataBits+1)) &0x1);
    }               
    /*Check EVEN or ODD Parity bit*/
    if( (psConfig->u8Parity == PARITY_EVEN ) || (psConfig->u8Parity == PARITY_ODD ) )
          {
       if(psConfig->u8Parity == PARITY_ODD)
       {
          if((u8ParityCheck % 2) == 0)
          {
            if(u8ParityBit != 1) printf("ODD Error\n");
          }
          else
          {
            if(u8ParityBit == 1)  printf("ODD Error\n");
          }
       }
       else
       {
         if((u8ParityCheck % 2) == 0)
         {
            if(u8ParityBit != 0) printf("Even Error\n");
         }
         else
         {
            if(u8ParityBit != 1) printf("Even Error\n");
         }
       }
   
   }/*Check MARK Parity bit*/
   else if(psConfig->u8Parity == PARITY_MARK)
   {
      if(u8ParityBit != 1) printf("MARK Error\n");
   }/*Check Space Parity bit*/
   else if(psConfig->u8Parity == PARITY_SPACE)
   {
      if(u8ParityBit != 0) printf("SPACE Error\n");
   }

    /*Check Stop bit*/
     if(psConfig->u8Parity == PARITY_NONE)
        u8StopBit = (psConfig->pu16TxBuff[u32Index] >> (psConfig->u8DataBits + 1));
     else
        u8StopBit = (psConfig->pu16TxBuff[u32Index] >> (psConfig->u8DataBits + 2));

    if(psConfig->u8StopBit == STOP_BIT_1 )
    {
      if(u8StopBit != 1)printf("STOP bit Error\n");
    }
    else
    {
      if(u8StopBit != 3)printf("STOP bits Error\n");
    }
   
    psConfig->pu16RxBuff[u32Index] = u8TempData;
    printf("Rx Data[%d] =0x%x\n",u32Index,psConfig->pu16RxBuff[u32Index]) ;                
                         
}       


uint8_t GetDataMsk(sUART_Config *psConfig)
{
   uint8_t u8DataMask;
       
        if(psConfig->u8DataBits == 8) u8DataMask = 0xFF;            /* 8 bits (0x0~0xFF) */
        else if(psConfig->u8DataBits == 7) u8DataMask = 0x7F;       /* 7 bits (0x0~0x7F) */
        else if(psConfig->u8DataBits == 6) u8DataMask = 0x3F;       /* 6 bits (0x0~0x3F) */
        else u8DataMask = 0x1F;                                     /* 5 bits (0x0~0x1F) */

        return u8DataMask;
}


uint8_t GetParityBitsNumber(sUART_Config *psConfig,uint8_t u8Data)
{
    uint8_t u8Index,u8ParityCheck;
          u8ParityCheck =0;
    for(u8Index = 0;u8Index < psConfig->u8DataBits ; u8Index++)       
    {
       if((u8Data & (1 << u8Index)) != 0)
           u8ParityCheck++;
    }

        return u8ParityCheck;         
               
}       


void BuildTxDataPattern(sUART_Config *psConfig)
{
  uint32_t u32Index;
        uint8_t u8DataMask;

  u8DataMask = GetDataMsk(psConfig);
  for(u32Index =0 ; u32Index  < psConfig->u32SendLen ;u32Index++)
  {
     psConfig->pu16TxBuff[u32Index] = (u32Index & u8DataMask);
  }
}
/*---------------------------------------------------------------------------------------------------------*/
/* SoftwareUART Stop bit configuration                                                                     */
/*---------------------------------------------------------------------------------------------------------*/

void SoftwareUART_StopBitConfig(sUART_Config *psConfig)
{
   uint32_t u32Index;
   for(u32Index =0 ; u32Index < psConfig->u32SendLen ; u32Index++)
   {
     if(psConfig->u8StopBit == STOP_BIT_1 )
     {       
        /* No Parity bit,offset value(start bit + data bits) */
        if(psConfig->u8Parity == PARITY_NONE)
           psConfig->pu16TxBuff[u32Index] |= (0x01 << (psConfig->u8DataBits + 1));
        else /* offset offset value(start bit + data bits + parity bit) */
           psConfig->pu16TxBuff[u32Index] |= (0x01 << (psConfig->u8DataBits + 2));
     }
     else
     {
        /* No Parity bit,offset value(start bit + data bits) */
        if(psConfig->u8Parity == PARITY_NONE)
           psConfig->pu16TxBuff[u32Index] |= (0x03 << (psConfig->u8DataBits + 1));
        else /* offset value (start bit + data bits + parity bit) */
           psConfig->pu16TxBuff[u32Index] |= (0x03 << (psConfig->u8DataBits + 2));
     }
   }
         
}       

/*---------------------------------------------------------------------------------------------------------*/
/* SoftwareUART Parity bit configuration                                                                   */
/*---------------------------------------------------------------------------------------------------------*/
void SoftwareUART_ParityBitConfig(sUART_Config *psConfig)
{
  uint8_t u8ParityCheck;
        uint32_t u32DatIndex;

   for(u32DatIndex =0 ; u32DatIndex < psConfig->u32SendLen ; u32DatIndex++)
   {
     if((psConfig->u8Parity == PARITY_EVEN ) || (psConfig->u8Parity == PARITY_ODD ) )
                 {
      
       u8ParityCheck = GetParityBitsNumber(psConfig,(uint8_t)psConfig->pu16TxBuff[u32DatIndex]);
      
       if(psConfig->u8Parity == PARITY_ODD)
       {
         if((u8ParityCheck % 2) == 0)
             psConfig->pu16TxBuff[u32DatIndex] = (psConfig->pu16TxBuff[u32DatIndex]<< 1) | (0x01 << (psConfig->u8DataBits+1));
         else
             psConfig->pu16TxBuff[u32DatIndex] = (psConfig->pu16TxBuff[u32DatIndex]<< 1);
       }
       else
       {
         if((u8ParityCheck % 2) == 1)
             psConfig->pu16TxBuff[u32DatIndex] = (psConfig->pu16TxBuff[u32DatIndex]<< 1)|(0x01 << (psConfig->u8DataBits+1));
         else
             psConfig->pu16TxBuff[u32DatIndex] = (psConfig->pu16TxBuff[u32DatIndex]<< 1);
       }
    }
    else if(psConfig->u8Parity == PARITY_MARK)
    {
            psConfig->pu16TxBuff[u32DatIndex] = (psConfig->pu16TxBuff[u32DatIndex]<< 1)|(0x01 << (psConfig->u8DataBits+1));
    }
    else
    {
            psConfig->pu16TxBuff[u32DatIndex] = (psConfig->pu16TxBuff[u32DatIndex]<< 1);
    }
   
       
}

}

/**
* @brief       Timer0 IRQ
*
* @param       None
*
* [url=home.php?mod=space&uid=266161]@return[/url]      None
*
* [url=home.php?mod=space&uid=1543424]@Details[/url]     The Timer0 default IRQ, declared in startup_M051Series.s.
*/
void TMR0_IRQHandler(void)
{
    /* Clear Timer0 time-out interrupt flag */
    TIMER_ClearIntFlag(TIMER0);
    /* Receiving data */
    if( g_psSoftwareUART_Config->u8RxStatus == eRxRcvData)
        g_psSoftwareUART_Config->u8RxTiming = 1;
  
       
}

/**
* @brief       Timer1 IRQ
*
* @param       None
*
* @return      None
*
* @details     The Timer1 default IRQ, declared in startup_M051Series.s.
*/
void TMR1_IRQHandler(void)
{
    /* Clear Timer1 time-out interrupt flag */
     TIMER_ClearIntFlag(TIMER1);

     g_psSoftwareUART_Config->u8TxSendCount++;
      /*Wait for the Tx transfer start bit to complete*/
     if(g_psSoftwareUART_Config->u8TxStatus == eTxIdel)
     {
        if(g_psSoftwareUART_Config->u8TxSendCount == g_psSoftwareUART_Config->u8TxLatency)
           g_psSoftwareUART_Config->u8TxStatus = eTxActive;
     }/* Tx transfer timing */
     else if(g_psSoftwareUART_Config->u8TxStatus == eTxSendData)
                         g_psSoftwareUART_Config->u8TxTiming = 1;
                 
}

/*** (C) COPYRIGHT 2019 Nuvoton Technology Corp. ***/

使用特权

评论回复
板凳
antusheng|  楼主 | 2020-3-26 20:50 | 只看该作者
#ifndef __SOFTWAREUART_H__
#define __SOFTWAREUART_H__

#include "stdio.h"
#include "stdlib.h"
#include "M051Series.h"
#include "string.h"

/*---------------------------------------------------------------------------------------------------------*/
/* Define                                                                                                  */
/*---------------------------------------------------------------------------------------------------------*/

/* Set to use GPIO emulation UART transfer */
#define GPIO_UART_TX       P27   
#define GPIO_UART_RX       P26

/*Define the UART Parity mode*/
#define PARITY_NONE        0
#define PARITY_ODD         1
#define PARITY_EVEN        2
#define PARITY_MARK        3
#define PARITY_SPACE       4

/*Define the UART STOP bit*/
#define STOP_BIT_1         0
#define STOP_BITS_2        1


/*---------------------------------------------------------------------------------------------------------*/
/* Global variables                                                                                        */
/*---------------------------------------------------------------------------------------------------------*/

/*SoftwareUART Rx status enumeration*/
typedef enum
{
eRxIdel = 0, /*Wait receive start bit*/
eRxActive,   /*Receive start bit */
eRxRcvData,  /*Receiving data*/          
}E_RX_STATUS;

/*SoftwareUART Tx status enumeration*/
typedef enum
{
eTxIdel = 0, /*Wait send start bit*/
eTxActive,   /*Send start bit*/
eTxSendData, /*Sending data*/        
}E_TX_STATUS;

/*SoftwareUART communication struct*/
typedef  struct _Config{
uint32_t u32BaudRate;      /* Setting the UART Bit Rate*/
uint8_t  u8DataBits;       /* UART Data bits Length(5-8 bits) */
uint8_t  u8Parity;         /* UART Parity(NONE,EVEN,ODD,SPACE,MARK)*/
uint8_t  u8StopBit;        /* 1 bit,2 bits */
uint8_t         u8CommunBitsLen;  /* for Software UART Tx/Rx Communication bits Length using */
uint8_t  u8TxSendCount;          /* Tx Send Data Timing Counter */
uint8_t  u8TxLatency;      /* Transmission interval*/
uint8_t  u8TxStatus;       /* UART Tx Status*/
uint8_t  u8TxTiming;              /* UART Tx Bit rate timing */
uint8_t  u8RxStatus;              /* UART Rx Status*/
uint8_t  u8RxTiming;              /* UART Rx Bit rate timing */
uint16_t *pu16TxBuff;      /* UART Tx Buffer pointer */
uint16_t *pu16RxBuff;      /* UART Rx Buffer pointer */
uint32_t        u32SendLen;       /* UART Tx transfer total length*/
uint32_t        u32ReceiveLen;          /* UART Tx receive total length*/
}sUART_Config;

extern sUART_Config  g_sSoftwareUART_Config;
extern sUART_Config *g_psSoftwareUART_Config;

/*---------------------------------------------------------------------------------------------------------*/
/* SoftwareUART Function                                                                                   */
/*---------------------------------------------------------------------------------------------------------*/
void SoftwareUART_ParityBitConfig(sUART_Config *spConfig);
void SoftwareUART_StopBitConfig(sUART_Config *spConfig);
void SoftwareUART_DataFormartConfig(sUART_Config *psConfig);
void BuildTxDataPattern(sUART_Config *psConfig);
void SoftwareUART_ConfigInit(sUART_Config *psConfig);
void SoftwareUART_Open(sUART_Config *psConfig,uint32_t u32BaudRate);
void SoftwareUART_SendData(sUART_Config *psConfig) ;
void SoftwareUART_ReadData(sUART_Config *psConfig) ;
uint8_t GetParityBitsNumber(sUART_Config *psConfig,uint8_t u8Data);
void SoftwareUART_ReceiveDateParse(sUART_Config *psConfig,uint32_t u32Index);
uint8_t GetDataMsk(sUART_Config *psConfig);

extern void SoftwareUART_Init(sUART_Config *psConfig);
extern void UART_TX_TestFunctoion(sUART_Config *psConfig);
extern void UART_RX_TestFunctoion(sUART_Config *psConfig);
extern void SoftwareUART_SendData(sUART_Config *psConfig) ;
extern void SoftwareUART_ReadData(sUART_Config *psConfig) ;


#endif  /* __SOFTWAREUART_H__*/

使用特权

评论回复
地板
antusheng|  楼主 | 2020-3-26 20:58 | 只看该作者
/**************************************************************************//**
* @file     main.c
* @version  V1.00
* @brief    M051 Simulate UART transfers using GPIO Sample Code
*
* @note
* Copyright (C) 2019 Nuvoton Technology Corp. All rights reserved.
******************************************************************************/
#include <stdio.h>
#include "M051Series.h"
#include "SoftwareUART.h"

#define PLLCON_SETTING      CLK_PLLCON_50MHz_HXT
#define PLL_CLOCK           50000000


void SYS_Init(void)
{
    /*---------------------------------------------------------------------------------------------------------*/
    /* Init System Clock                                                                                       */
    /*---------------------------------------------------------------------------------------------------------*/
   
          /* Enable IRC22M clock */
    CLK_EnableXtalRC(CLK_PWRCON_OSC22M_EN_Msk);
       
    /* Waiting for IRC22M clock ready */
    CLK_WaitClockReady(CLK_CLKSTATUS_IRC22M_STB_Msk);

    /* Enable external 12MHz XTAL clock ready */
    CLK_EnableXtalRC(CLK_PWRCON_XTL12M_EN_Msk);

    /* Waiting for 12MHz XTAL clock ready */
    CLK_WaitClockReady(CLK_CLKSTATUS_XTL12M_STB_Msk);

    /* Enable external IRC10K */
    CLK_EnableXtalRC(CLK_PWRCON_OSC10K_EN_Msk);
   
    /* Waiting for IRC10K clock ready */
    CLK_WaitClockReady(CLK_CLKSTATUS_OSC10K_STB_Msk);
               
    /* Set core clock as PLL_CLOCK from PLL */
    CLK_SetCoreClock(PLL_CLOCK);

    /* Switch HCLK clock source to HIRC */
    CLK_SetHCLK(CLK_CLKSEL0_HCLK_S_PLL, CLK_CLKDIV_HCLK(1));

    /* Enable peripheral clock */
    /* Enable UART0 module clock */
    CLK_EnableModuleClock(UART0_MODULE);
    /* Enable TIMER0 module clock */
    CLK_EnableModuleClock(TMR0_MODULE);
    /* Enable TIMER1 module clock */
    CLK_EnableModuleClock(TMR1_MODULE);
               
    /* Peripheral clock source */
       
    /* Select UART module clock source */
    CLK_SetModuleClock(UART0_MODULE, CLK_CLKSEL1_UART_S_HXT, CLK_CLKDIV_UART(1));
    /* Select TMR0 module clock source */
    CLK_SetModuleClock(TMR0_MODULE, CLK_CLKSEL1_TMR0_S_HXT,0);
    /* Select TMR1 module clock source */
    CLK_SetModuleClock(TMR1_MODULE, CLK_CLKSEL1_TMR1_S_HXT,0);

    /* Update System Core Clock */
    /* User can use SystemCoreClockUpdate() to calculate PllClock, SystemCoreClock and CycylesPerUs automatically. */
    SystemCoreClockUpdate();

    /*---------------------------------------------------------------------------------------------------------*/
    /* Init I/O Multi-function                                                                                 */
    /*---------------------------------------------------------------------------------------------------------*/
    /* Set P3 multi-function pins for UART0 RXD, TXD */
    SYS->P3_MFP = SYS_MFP_P30_RXD0 | SYS_MFP_P31_TXD0;
}

void SoftwareUART_TestItem(void)
{

    printf("+--------------------------------------------------------+\n");
    printf("|           M051 SoftwareUART Transmission               |\n");
    printf("+--------------------------------------------------------+\n");
    printf("| [1] Software UART TX                                   |\n");
    printf("| [2] Software UART RX                                   |\n");
    printf("+--------------------------------------------------------+\n");
    printf("Please Enter any Key to Start: ");
}       
/*---------------------------------------------------------------------------------------------------------*/
/* UART0 Init Function                                                                                     */
/*---------------------------------------------------------------------------------------------------------*/
void UART0_Init(void)
{
    /* Reset IP */
    SYS_ResetModule(UART0_RST);

    /* Configure UART0 and set UART0 Baudrate */
    UART_Open(UART0, 115200);
}
/*---------------------------------------------------------------------------------------------------------*/
/* Simulate UART Tx transfers using GPIO                                                                   */
/*---------------------------------------------------------------------------------------------------------*/
void UART_TX_TestFunctoion(sUART_Config *psConfig)
{
   printf("Transfer %d-byte serial number\n",psConfig->u32SendLen);
   SoftwareUART_SendData(psConfig);
}       

/*---------------------------------------------------------------------------------------------------------*/
/*  Receive data using GPIO emulation UART Rx                                                              */
/*---------------------------------------------------------------------------------------------------------*/
void UART_RX_TestFunctoion(sUART_Config *psConfig)
{       
   printf("Waiting to receive %d-byte\n",psConfig->u32ReceiveLen);
   SoftwareUART_ReadData(psConfig);
}       


/*---------------------------------------------------------------------------------------------------------*/
/*  MAIN function                                                                                          */
/*---------------------------------------------------------------------------------------------------------*/
int main(void)
{
    uint8_t u8TestItem;
    /* Unlock protected registers */
    SYS_UnlockReg();

    /* Init System, peripheral clock and multi-function I/O */
    SYS_Init();

    /* Lock protected registers */
    SYS_LockReg();
   
    /* Init UART0 for printf */
    UART0_Init();
          /* Init SoftwareUART  */
    SoftwareUART_Init(&g_sSoftwareUART_Config);
    printf("\nSystem Clock = %d Hz\n",SystemCoreClock);
   
   while(1)
   {

    SoftwareUART_TestItem();
    u8TestItem = getchar();
    printf("%c\n",u8TestItem);
   
     switch(u8TestItem)
     {
       case '1':
               UART_TX_TestFunctoion(g_psSoftwareUART_Config);
              break;
       case '2':
               UART_RX_TestFunctoion(g_psSoftwareUART_Config);
              break;
       default:
              break;                                  
     }
    }
}

/*** (C) COPYRIGHT 2019 Nuvoton Technology Corp. ***/

使用特权

评论回复
5
huangcunxiake| | 2020-3-26 22:31 | 只看该作者

前来观摩学习。

使用特权

评论回复
发新帖 我要提问
您需要登录后才可以回帖 登录 | 注册

本版积分规则

83

主题

1450

帖子

5

粉丝