i2cswconf.h
来自「avrlib.rar ,一个学习AVR处理器十分有用的函数库.」· C头文件 代码 · 共 33 行
H
33 行
/*! \file i2cswconf.h \brief Software-driven I2C interface configuration. */
//*****************************************************************************
//
// File Name : 'i2cswconf.h'
// Title : software-driven I2C interface using port pins
// Author : Pascal Stang - Copyright (C) 2000-2002
// Created : 11/22/2000
// Revised : 5/2/2002
// Version : 1.1
// Target MCU : Atmel AVR series
// Editor Tabs : 4
//
// This code is distributed under the GNU Public License
// which can be found at http://www.gnu.org/licenses/gpl.txt
//
//*****************************************************************************
#ifndef I2CSWCONF_H
#define I2CSWCONF_H
// clock line port
#define SCLPORT PORTD // i2c clock port
#define SCLDDR DDRD // i2c clock port direction
// data line port
#define SDAPORT PORTD // i2c data port
#define SDADDR DDRD // i2c data port direction
#define SDAPIN PIND // i2c data port input
// pin assignments
#define SCL PD0 // i2c clock pin
#define SDA PD1 // i2c data pin
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?