?? ti2c.c.svn-base
字號:
/**
* This code and information is part of Trident DPTV API (TDAPI)
*
* Copyright (C) Trident Multimedia Technologies (Shanghai) Co., Ltd.
* 2001 All rights reserved.
*
* This file contains functions related to 80C552 software I2C
*
* Revision:
* 08/14/2001 Created by Archie,Quinn
*
*/
#include "tdefs.h"
#include "ti2CHIGH.h"
//GByte s_ucActiveI2Bus;
extern Code FNSOFTIIC c_fnSoftI2C1;
//extern Code FNSOFTIIC c_fnSoftI2C2;
#define _TOTAL_IIC_BUS_ 0x01
static FNSOFTIIC Code * Code c_fnSoftI2C[_TOTAL_IIC_BUS_] =
{
&c_fnSoftI2C1
};
extern Void tdI2COpen1(Void);
extern Void tdI2CClose1(Void);
Void tdI2COpen(Byte ucIICBus)
{
tdI2COpen1();
}
Void tdI2CClose(Byte ucIICBus)
{
tdI2CClose1();
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -