📄 serial_user.c
字号:
/*
*******************************************************************************
**
** This device driver was created by Applilet for the 78K0/KB2, 78K0/KC2,
** 78K0/KD2, 78K0/KE2 and 78K0/KF2 8-Bit Single-Chip Microcontrollers.
**
** Copyright(C) NEC Electronics Corporation 2002 - 2005
** All rights reserved by NEC Electronics Corporation.
**
** This program should be used on your own responsibility.
** NEC Electronics Corporation assumes no responsibility for any losses
** incurred by customers or third parties arising from the use of this file.
**
** Filename : serial_user.c
** Abstract : This file implements device driver for SERIAL module.
** APIlib : NEC78K0KX2.lib V1.01 [09 Aug. 2005]
**
**
** Compiler : NEC/CC78K0
**
*******************************************************************************
*/
/*
*******************************************************************************
** Include files
*******************************************************************************
*/
#include "macrodriver.h"
#include "serial.h"
/*
**-----------------------------------------------------------------------------
**
** Abstract:
** IIC0 slave address match
** callback function for users operation
**
** Parameters:
** None
**
** Returns:
** None
**
**-----------------------------------------------------------------------------
*/
void CALL_IIC0_SlaveAddressMatch( void )
{
/* user operation */
}
/*
**-----------------------------------------------------------------------------
**
** Abstract:
** Master find the slave address
** callback function open for users operation
**
** Parameters:
** None
**
** Returns:
** None
**
**-----------------------------------------------------------------------------
*/
void CALL_IIC0_MasterFindSlave( void )
{
/* user operation */
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -