打印
[DemoCode下载]

N76E003支持使用 SDCC

[复制链接]
731|1
手机看帖
扫描二维码
随时随地手机跟帖
跳转到指定楼层
楼主

N76E003-master.zip (987.9 KB)
/*---------------------------------------------------------------------------------------------------------*/
/* SDCC simple "Hello World" UART0 for Nuvoton N76E003                                                     */
/* Just connect any serial adapter on N76 ports P.06 and P.07 and view the result in PC serial monitor     */
/* P0.6 [TX] -> FTDI [RX]                                                                                  */
/* P0.7 [RX] <- FTDI [TX]                                                                                  */
/* Adapted from Nuvoton's UART0_Printf sample code                                                         */
/*---------------------------------------------------------------------------------------------------------*/

#include "N76E003.h"
#include "SFR_Macro.h"
#include "Function_define.h"
#include "Common.h"
#include "Delay.h"

/* Needed for printf */
int putchar (int c) {
  while (!TI);
  TI = 0;
  SBUF = c;
  return c;
}


/*==========================================================================*/
void main (void)
{
          InitialUART0_Timer3(115200);
          TI = 1;                                                                                                                        // Important, use prinft function must set TI=1;
       
                while(1)
                {
                        printf_small("\n Hello world");
                        Timer0_Delay1ms(300);
                }
}


使用特权

评论回复
沙发
zhuomuniao110| | 2024-6-23 22:12 | 只看该作者
这好像是一个免费的编译器。

使用特权

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

本版积分规则

201

主题

3580

帖子

16

粉丝