jianghuai/SYSTEM/spi.h
2024-05-07 09:36:09 +08:00

33 lines
813 B
C
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#ifndef __SPI_H
#define __SPI_H
#include "stdint.h"
//////////////////////////////////////////////////////////////////////////////////
//本程序只供学习使用,未经作者许可,不得用于其它任何用途
//ALIENTEK战舰STM32开发板
//SPI驱动 代码
//正点原子@ALIENTEK
//技术论坛:www.openedv.com
//修改日期:2012/9/9
//版本V1.0
//版权所有,盗版必究。
//Copyright(C) 广州市星翼电子科技有限公司 2009-2019
//All rights reserved
//////////////////////////////////////////////////////////////////////////////////
void SPI1_Init(void); //初始化SPI口
void SPI1_SetSpeed(uint8_t SpeedSet); //设置SPI速度
uint8_t SPI1_ReadWriteByte(uint8_t TxData);//SPI总线读写一个字节
void IWDG_Config(uint8_t prv ,uint16_t rlv);
// 喂狗
void IWDG_Feed(void);
void IWDG_Init(void);
#endif