root/branch/CLAUD/sp4c12/SP41c/SP41c/uart0.c @ 837
| 827 | anclaud | /***********************************************************************/
|
|
/* */
|
|||
/* FILE :SP41c.c */
|
|||
/* DATE :Thu, Jun 03, 2021 */
|
|||
/* DESCRIPTION :main program file. */
|
|||
/* CPU GROUP :87B */
|
|||
/* */
|
|||
/* This file is generated by Renesas Project Generator (Ver.4.18). */
|
|||
/* NOTE:THIS IS A TYPICAL EXAMPLE. */
|
|||
/***********************************************************************/
|
|||
#include "sfr32c87.h"
|
|||
#include "uart0.h"
|
|||
void main(void)
|
|||
{
|
|||
char c;
|
|||
uart0_init();
|
|||
//c = '3';
|
|||
while(1)
|
|||
{
|
|||
c = uart0_rx();
|
|||
uart0_tx(c);
|
|||
}
|
|||
}
|