文件名称:SSP
-
所属分类:
- 标签属性:
- 上传时间:2013-12-19
-
文件大小:4.91kb
-
已下载:0次
-
提 供 者:
-
相关连接:无下载说明:别用迅雷下载,失败请重下,重下不扣分!
介绍说明--下载内容来自于网络,使用问题请自行百度
LPC1343 SSP.C SSP.H @file ssp.c @author K. Townsend (microBuilder.eu) @section DEscr iptION Generic code for SSP/SPI communications. By default, the SSP block is initialised in SPI master mode. @section Example @code #include "core/cpu/cpu.h" #include "core/ssp/ssp.h" ... cpuInit(); sspInit(0, sspClockPolarity_High, sspClockPhase_RisingEdge); ... uint8_t request[SSP_FIFOSIZE]; uint8_t response[SSP_FIFOSIZE]; // Send 0x9C to the slave device and wait for a response request[0] = 0x80 | 0x1C; // Toggle the select pin ssp0Select(); // Send 1 byte from the request buffer sspSend(0, (uint8_t *)&request, 1); // Receive 1 byte into the response buffer sspReceive(0, (uint8_t *)&response, 1); // Reset the select pin ssp0Deselect(); // Print the results debug_printf("Ox%x ", response[0]); @endcode
相关搜索: lpc1343
(系统自动生成,下载前可以参看下载内容)
下载文件列表
压缩包 : ssp.rar 列表 ssp.h ssp.c
本网站为编程资源及源代码搜集、介绍的搜索网站,版权归原作者所有! 粤ICP备11031372号
1999-2046 搜珍网 All Rights Reserved.