SoftSPI_HAL_Lib/softspi_conf.h

23 lines
373 B
C
Raw Permalink Normal View History

2021-10-12 12:11:33 +08:00
/**
* @file softspi_conf.h
* @author Myth
2021-10-12 18:07:30 +08:00
* @version 0.2
2021-10-12 12:11:33 +08:00
* @date 2021.10.12
* @brief STM32 SoftSPI Library Config File
*/
#ifndef __SOFTSPI_CONF_H
#define __SOFTSPI_CONF_H
// Set your HAL Library here.
#include "stm32f1xx_hal.h"
// Set your owm Delay_us function here.
#include "systick.h"
#define SoftSPI_Delay_us(__time__) Delay_us(__time__)
#endif