代码搜索:spi总线
找到约 10,000 项符合「spi总线」的源代码
代码结果 10,000
www.eeworm.com/read/189337/8474292
c spi.c
/*
**********************************************************************************************
* Project: T8Lib
* File: spi.c
* Contents:
* The spi module c file(software spi)
* $
www.eeworm.com/read/189337/8474294
h spi.h
/*
**********************************************************************************************
* Project: T8Lib
* File: spi.h
* Contents:
* The spi module interface head file
*
www.eeworm.com/read/189337/8474304
lst spi.lst
C51 COMPILER V7.02b SPI 08/28/2006 18:59:06 PAGE 1
C51 COMPILER V7.02b, COMPILATION OF MODULE SPI
OBJECT MODULE PLACED IN .\
www.eeworm.com/read/189337/8474356
obj spi.obj
www.eeworm.com/read/290407/8484507
h spi.h
#ifndef _SPI_H_
#define _SPI_H_
/*
* SPI D-òé
* ′|àí?÷ààDí£oC51£?AVR
* °?±?£o1
* è??ú£o2006-12-3
* ×÷??£o??μ?í?
* This program is free software; you can redistrib
www.eeworm.com/read/290361/8488551
c spi.c
#include "hal.h"
void SpiWriteBurstReg(BYTE addr, BYTE *buf, BYTE n)
{
CLR_CSN;
while (SOREAD);
SPDR = addr | WRITE_BURST;
SPI_WAIT();
for (BYTE i = 0; i < n; i++) {
www.eeworm.com/read/290360/8488577
c spi.c
#include "hal.h"
void SpiWriteBurstReg(BYTE addr, BYTE *buffer, BYTE count)
{
CLR_CSN;
while (SOREAD);
SPDR = addr | WRITE_BURST;
SPI_WAIT();
for (BYTE i = 0; i < cou
www.eeworm.com/read/290355/8488640
h spi.h
/***************************************************************************\
Copyright (c) 2004-2007 threewater@up-tech.com, All rights reserved.
by threewter 2005.2.26
\************************
www.eeworm.com/read/290355/8488703
c spi.c
/***************************************************************************\
Copyright (c) 2004-2007 threewater@up-tech.com, All rights reserved.
by threewter 2005.2.26
\************************
www.eeworm.com/read/188989/8497953
c spi.c
#include
#include
#include
#include "rtl_glue.h"
#include "rtl_types.h"
#include "rtl_errno.h"
#include "assert.h"
#include "gpio.h"
#include "s