打印
[DemoCode下载]

ML51的Print使用方法

[复制链接]
659|5
手机看帖
扫描二维码
随时随地手机跟帖
跳转到指定楼层
楼主
xinxianshi|  楼主 | 2020-7-21 21:16 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
/*---------------------------------------------------------------------------------------------------------*/
/*                                                                                                         */
/* Copyright(c) 2019 Nuvoton Technology Corp. All rights reserved.                                         */
/*                                                                                                         */
/*---------------------------------------------------------------------------------------------------------*/

//***********************************************************************************************************
//  Website: http://www.nuvoton.com
//  E-Mail : MicroC-8bit@nuvoton.com
//***********************************************************************************************************

#include "ML51.h"

/**
* [url=home.php?mod=space&uid=247401]@brief[/url]       UART0 setting as prinrf output.
* @param       None
* [url=home.php?mod=space&uid=266161]@return[/url]      None
* [url=home.php?mod=space&uid=1543424]@Details[/url]     purchar.c setting use UART0, or use keil default.
*/

void main (void)
{
       
/**
For UART0 P3.1 asTXD output setting
* include uart.c in Common Setting for UART0
*/
                MFP_P16_UART0_TXD;                                                                                                                        // UART0 TXD use P5.3
                P16_QUASI_MODE;                                                                                                                           // set P5.3 as Quasi mode for UART0 trasnfer

/**
For UART0 initial setting
* include uart.c in Common Setting for UART0
*/
                UART_Open(24000000,UART0_Timer1,115200);                                // Open UART0 use timer3 as baudrate generate and baud rate = 115200en(24000000,UART0_Timer1,115200);       
                ENABLE_UART0_PRINTF;                                                                                                                                                // printf must first set TI =1;
               
/**
        UART1 loop test
        UART1 TXD1 send data received by RXD1 pin. Connect TXD1 pin and RXD1 pin check result.
*/
                while(1)
                {
//                        printf ("\n hello world! " );
                        printf ("a" );
                        Timer2_Delay(24000000,128,1000,1000);
                }

}




使用特权

评论回复
沙发
xinxianshi|  楼主 | 2020-7-21 21:17 | 只看该作者
/*---------------------------------------------------------------------------------------------------------*/
/*                                                                                                         */
/* Copyright(c) 2019 Nuvoton Technology Corp. All rights reserved.                                         */
/*                                                                                                         */
/*---------------------------------------------------------------------------------------------------------*/

//***********************************************************************************************************
//  Website: http://www.nuvoton.com
//  E-Mail : MicroC-8bit@nuvoton.com
//***********************************************************************************************************

#include "ML51.h"

/**
* @brief       UART1 use as printf.
* @param       None
* @return      None
* @details     None
*/


void main (void)
{

/**
For UART1 P2.3 as TXD1 / P2.3 as RXD1 GPIO setting
* include gpio.c in Common Setting for UART0
*/
    MFP_P23_UART1_TXD;                              // UART0 TXD use P0.5
    P23_QUASI_MODE;                                 // set P0.5 and P0.6 as Quasi mode for UART0 trasnfer
/**
For UART1 initial setting
* include uart.c in Common Setting for UART0
*/
    UART_Open(24000000,UART1,115200);              // Open UART0 use timer1 as baudrate generate and baud rate = 115200en(24000000,UART0_Timer1,115200);        // Open UART0 use timer1 as baudrate generate and baud rate = 115200
    set_S1CON_TI_1;                                // printf must first set TI_1 =1;
   
/**
  UART1 loop test
  UART1 TXD1 send data received by RXD1 pin. Connect TXD1 pin and RXD1 pin check result.
*/
    while(1)
    {
      printf ("\n hello world! " );
      Timer2_Delay(24000000,128,1000,1000);        //Means timer base 24MHz, divider 128, delay time 100 ms (100000us)
    }
}

使用特权

评论回复
板凳
wanduzi| | 2020-7-21 21:37 | 只看该作者
这个延时函数能否不这么复杂。

使用特权

评论回复
地板
wanduzi| | 2020-7-21 21:38 | 只看该作者
太复杂了。

使用特权

评论回复
5
mintspring| | 2020-7-22 22:47 | 只看该作者
可以可以。

使用特权

评论回复
6
幸福小强| | 2020-7-23 18:06 | 只看该作者
看看有啥特别的

使用特权

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

本版积分规则

88

主题

879

帖子

1

粉丝