testuser_init.c

来自「这是一个基于nec78f8024的led驱动程序」· C语言 代码 · 共 52 行

C
52
字号
/*
*******************************************************************************
**  COPYRIGHT (C) NEC Electronics Corporation 2008
**  NEC ELECTRONICS CONFIDENTIAL AND PROPRIETARY
**  All rights reserved by NEC Electronics Corporation.
**  Use of copyright notice does not evidence publication.
**
**  Filename :	user_init.c
**  Abstract :	This file implements dimmer program and LED initialization.
**
**  Device :	uPD78F8024
**
**  Compiler :	NEC/CC78K0
**
*******************************************************************************
*/

/*
*******************************************************************************
**  Include files
*******************************************************************************
*/
#include "testmacrodriver.h"
#include "testuser.h"
#include "testLED.h"
#include "testUART0.h"
#include "testUART6.h"
#include "testI2C.h"
#include "testSPI.h"
#include "testANI.h"
#include "testAUTO.h"
#include "testbianhua.h"


/*
*******************************************************************************
**  Function Prototype
*******************************************************************************
*/

void user_init( void )
{
	ANI0_init( );
    testbianhua_init();

	LED1_init( );
	LED2_init( );
	LED3_init( );
	LED4_init( );
}

⌨️ 快捷键说明

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