mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-23 21:13:16 +00:00
917410a0a8
* fbt: reworking targets & assets handling WIP * fbt: dist fixes * fbt: moved SD card resources to owning apps * unit_tests: moved resources to app folder * github: updated unit_tests paths * github: packaging fixes * unit_tests: fixes * fbt: assets: internal cleanup * fbt: reworked assets handling * github: unit_tests: reintroducing fixes * minor cleanup * fbt: naming changes to reflect private nature of scons tools * fbt: resources: fixed dist archive paths * docs: updated paths * docs: updated more paths * docs: included "resources" parameter in app manifest docs; updated assets readme * updated gitignore for assets * github: updated action versions * unit_tests: restored timeout; scripts: assets: logging changes * gh: don't upload desktop animations for unit test run Co-authored-by: あく <alleteam@gmail.com>
61 lines
1.7 KiB
C
61 lines
1.7 KiB
C
#pragma once
|
|
|
|
#include <furi_hal_spi_types.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/** Preset for ST25R916 */
|
|
extern const LL_SPI_InitTypeDef furi_hal_spi_preset_2edge_low_8m;
|
|
|
|
/** 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;
|
|
|
|
/** 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
|
|
*
|
|
*/
|
|
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;
|
|
|
|
/** SdCard in slow mode on `furi_hal_spi_bus_d` */
|
|
extern FuriHalSpiBusHandle furi_hal_spi_bus_handle_sd_slow;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|