资源简介
linux下源码例子
代码片段和文件信息
/*
* SPI testing utility (using spidev driver)
*
* Copyright (c) 2007 MontaVista Software Inc.
* Copyright (c) 2007 Anton Vorontsov
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License.
*
* Cross-compile with cross-gcc -I/path/to/cross-kernel/include
*/
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#define ARRAY_SIZE(a) (sizeof(a) / sizeof((a)[0]))
static void pabort(const char *s)
{
perror(s);
abort();
}
static const char *device = “/dev/spidev1.0“;
static uint32_t mode;
static uint8_t bits = 8;
static uint32_t speed = 500000;
static uint16_t delay;
static int verbose;
uint8_t default_tx[] = {
0xFF 0xFF 0xFF 0xFF
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 70 2019-05-13 17:23 spi\build.sh
文件 391 2019-05-13 17:23 spi\readme.txt
文件 6806 2019-05-13 17:23 spi\spi_test.c
目录 0 2020-03-23 09:18 spi
----------- --------- ---------- ----- ----
7267 4
- 上一篇:ASR MMI 接口文档
- 下一篇:335X can总线
相关资源
- Linux驱动,SPI驱动
- DSP28335通过SPI读写SD卡例程
- 基于S32K148的TBOX设计(s32k148_QSPI)
- 使用SPI+DMA发送数据WS2812
- 335X can总线
- STM32F334同步整流buck代码
- 获取窗口控件工具(inspinst.exe)
- W5500通信软件包 源码
- proteus仿真C51操作SPI
- ATA8510 433M控制程序
- 电力系统33节点粒子群算法。(一般用
- STM32F103VCT6+ENC28J60(SPI2)基于uip的Mo
- Windows程序设计(第五版)【完整珍藏
- DSP 28335 BLDC开环驱动程序代码
- DSP 28335 BLDC闭环驱动程序代码
- spike安装包
- EEPROM 25LC256读写源码 C++
- 基于f28335的三相变频电路程序
- 基于STM32F103和AMG8833红外测温
评论
共有 条评论