代码搜索结果
找到约 10,000 项符合
SPI 的代码
spi._h
//SPI Interface
#include
#include
void SPIOutput(unsigned char data)
{
SPDR = data;//clockwise; //SPIOUTPUT
while ( !(SPSR & BIT(7)) ); //wait
}
spi.h
//SPI Interface
#include
#include
void SPIOutput(unsigned char data)
{
SPDR = data;//clockwise; //SPIOUTPUT
while ( !(SPSR & BIT(7)) ); //wait
}
spi.c
/****************************************Copyright (c)**************************************************
** Guangzou ZLG-MCU Development Co.,LTD.
**
spi.h
/****************************************Copyright (c)**************************************************
** Guangzou ZLG-MCU Development Co.,LTD.
**
spi.c
/********************************************************************************************************/
#define IN_SPI
#include "config.h"
#ifndef SPI_MOD
#define SPI_MOD 0
#endif
spi.h
/****************************************Copyright (c)**************************************************
**********************************************************************************************