2021-08-08 18:03:25 +00:00
|
|
|
#pragma once
|
|
|
|
|
2022-01-05 16:10:18 +00:00
|
|
|
#include <furi_hal_spi_types.h>
|
2021-08-08 18:03:25 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2021-11-30 12:09:43 +00:00
|
|
|
/** Preset for ST25R916 */
|
|
|
|
extern const LL_SPI_InitTypeDef furi_hal_spi_preset_2edge_low_8m;
|
2021-08-08 18:03:25 +00:00
|
|
|
|
2021-11-30 12:09:43 +00:00
|
|
|
/** Preset for CC1101 */
|
|
|
|
extern const LL_SPI_InitTypeDef furi_hal_spi_preset_1edge_low_8m;
|
|
|
|
|
|
|
|
/** Preset for ST7567 (Display) */
|
|
|
|
extern const LL_SPI_InitTypeDef furi_hal_spi_preset_1edge_low_4m;
|
|
|
|
|
|
|
|
/** Preset for SdCard in fast mode */
|
|
|
|
extern const LL_SPI_InitTypeDef furi_hal_spi_preset_1edge_low_16m;
|
|
|
|
|
|
|
|
/** Preset for SdCard in slow mode */
|
|
|
|
extern const LL_SPI_InitTypeDef furi_hal_spi_preset_1edge_low_2m;
|
2021-08-08 18:03:25 +00:00
|
|
|
|
2021-11-30 12:09:43 +00:00
|
|
|
/** Furi Hal Spi Bus R (Radio: CC1101, Nfc, External)*/
|
|
|
|
extern FuriHalSpiBus furi_hal_spi_bus_r;
|
|
|
|
|
|
|
|
/** Furi Hal Spi Bus D (Display, SdCard) */
|
|
|
|
extern FuriHalSpiBus furi_hal_spi_bus_d;
|
|
|
|
|
|
|
|
/** CC1101 on `furi_hal_spi_bus_r` */
|
|
|
|
extern FuriHalSpiBusHandle furi_hal_spi_bus_handle_subghz;
|
|
|
|
|
|
|
|
/** ST25R3916 on `furi_hal_spi_bus_r` */
|
|
|
|
extern FuriHalSpiBusHandle furi_hal_spi_bus_handle_nfc;
|
|
|
|
|
|
|
|
/** External on `furi_hal_spi_bus_r`
|
|
|
|
* Preset: `furi_hal_spi_preset_1edge_low_2m`
|
|
|
|
*
|
|
|
|
* miso: pa6
|
|
|
|
* mosi: pa7
|
|
|
|
* sck: pb3
|
|
|
|
* cs: pa4 (software controlled)
|
|
|
|
*
|
|
|
|
* @warning not initialized by default, call `furi_hal_spi_bus_handle_init` to initialize
|
|
|
|
* Bus pins are floating on inactive state, CS high after initialization
|
|
|
|
*
|
2021-08-08 18:03:25 +00:00
|
|
|
*/
|
2021-11-30 12:09:43 +00:00
|
|
|
extern FuriHalSpiBusHandle furi_hal_spi_bus_handle_external;
|
|
|
|
|
|
|
|
/** ST7567(Display) on `furi_hal_spi_bus_d` */
|
|
|
|
extern FuriHalSpiBusHandle furi_hal_spi_bus_handle_display;
|
|
|
|
|
|
|
|
/** SdCard in fast mode on `furi_hal_spi_bus_d` */
|
|
|
|
extern FuriHalSpiBusHandle furi_hal_spi_bus_handle_sd_fast;
|
2021-08-08 18:03:25 +00:00
|
|
|
|
2021-11-30 12:09:43 +00:00
|
|
|
/** SdCard in slow mode on `furi_hal_spi_bus_d` */
|
|
|
|
extern FuriHalSpiBusHandle furi_hal_spi_bus_handle_sd_slow;
|
2021-08-08 18:03:25 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
2022-05-06 13:37:10 +00:00
|
|
|
#endif
|