e02c.c

来自「一个瑞萨单片机的程序。。。供大家学习用。。。。。。。。。。。。。。。。。。」· C语言 代码 · 共 51 行

C
51
字号
/*""FILE COMMENT""***********************************************************
 * System Name : for eduction (NO TRANSFERRING)
 * File Name   : e02C.c
 * Contents    : embedded C language entrance course
 *             : exercise 2C: program with array(get sum)
 * Model       : for OAKS8-LCD Board
 * CPU         : R8C/Tiny series
 * Compiler    : NC30WA(V.5.30 Release 1)
 * OS          : not be used
 * Programmer  : RENESAS Semiconductor Training Center
 * Note        : for OAKS8-R5F21114FP(R8C/11 group,20MHz)
 ****************************************************************************
 * COPYRIGHT(C) 2004 RENESAS TECHNOLOGY CORPORATION  
 *               AND RENESAS SOLUTIONS CORPORATION ALL RIGHTS RESERVED
 ****************************************************************************
 * History     : 
 *""FILE COMMENT END""*******************************************************/

/* include file */
#include "defs.h"			/* define common symbol					*/
#include "oaks8lib.h"		/* for function to deal with OAKS8-LCDBoard peripheral	*/


/* define function prototype */
int main(void);

/* define and initialize one-dimensional array */
/* sum of 1 to 20(result)	*/

/*""FUNC COMMENT""*************************************************************
 *  ID            : 1.0
 *  function name : main
 *  function      : provide result of sum of 1 to 20 in an array 
 *                : and display in LCD
 *  parameter     : none
 *  return        : result 0:normal end
 *  function used : none
 *  notice        : none
 *  History       : 
 *""FUNC COMMENT END""********************************************************/
int main(void)
{
	
	return 0;
}


/*****************************************************************************
    end of file
******************************************************************************/

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?