资源简介
f310之spi操作ADS1255/ADS1256
f310之spi操作ADS1255/ADS1256
代码片段和文件信息
#include
#include
#include
sbit dydn=P1^0;
void SendSPIByte(unsigned char ch)
{
SPIF = 0;
SPI0DAT = ch;
while (SPIF == 0); // 等待写结束
}
unsigned char GetSPIByte(void)
{
SPIF = 0;
SPI0DAT = 0;
while (SPIF == 0);
return SPI0DAT; // 等待读结束
}
//-----------------------------------------------
void PORT_Init (void)
{
XBR0 |= 0x02;
XBR1 |= 0x40;
P0SKIP =0x8c;
P0MDOUT = 0xfF;
P1MDOUT |= 0x00;
}
void SPI0_Init (void)
{
SPI0CFG = 0x63;
SPI0CN = 0x09;
SPI0CKR =
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
.CA.... 2387 2010-03-23 09:11 WIMC8051F310.Uv2
.CA.... 3280 2010-03-23 09:09 spi.c
.CA.... 1515 2009-12-28 11:33 Uart.c
.CA.... 3427 2010-03-23 09:16 WIMC8051F310.C
.CA.... 512 2009-10-30 12:58 spi.h
.CA.... 307 2010-03-23 09:11 Uart.h
.CA.... 0 2009-10-26 16:00 WIMC8051F310.H
.CA.... 8253 2010-03-23 09:17 WIMC8051F310.hex
----------- --------- ---------- ----- ----
19681 8
相关资源
- stm32 spi双机通信
- Spirent TestCenter中文版本简易操作手册
- AD9854 MSP430 SPI
- Master SPI的Verilog源代码(包括文档 测
- 两块stm32 spi通信,使用DMA
- 两块板子之间的stm32spi通信例程
- spi flash verilog simulation model仿真模型
- hspice0.35um工艺库
- SPIKE2.9资源包
- BMP280--STM32驱动
- SPI传输 VHDL实现
- SD卡VERILOG SPI
- IAR_CODE_MSP430F5529LP_LAUNCH_PAD_SPI_OLED.zip
- SolidThinkingInspire201864位中文多语特别版
- stm32驱动SDHC卡SPI方式 一
- MPU9250的verilog spi 读取ip
- 0.96OLED显示屏_arduino_SPI_例程
- 28335:SPI读取传感数据-CAN传送
- SpiralTrackVer0.8 PCB图专用
- 基于QUARTUSII利用verilog语言编的SPI控制
- mpc5748g_spi_demo.zip
- dsp28335串口通信程序
- PFC源码 基于dspic30F
- stm32 SPI模式读写SD卡
- 用于FPGA 的SPI -16位模拟端口做从机
- 从pspice导出供multisim用的9012131415;805
- stm32f4通过spi用fatfs读写sd卡程序
- APB_SPI_master
- 51 spi通信
- stm32W5500官方移植好的,只需改里面的
评论
共有 条评论