?? spi1.c
字號:
/*****************************************************************************
*
* File: spi1.c
*
* Copyright S. Brennen Ball, 2006-2007
*
* The author provides no guarantees, warantees, or promises, implied or
* otherwise. By using this software you agree to indemnify the author
* of any damages incurred by using it.
*
*****************************************************************************/
#include <spi.h>
#include <p18f452.h>
unsigned char spi1_send_read_byte(unsigned char byte)
{
SSPBUF = byte;
while(!DataRdySPI());
return SSPBUF;
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -