mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-27 15:00:46 +00:00
acc39a4bc0
* Api Symbols: replace asserts with checks * Api Symbols: replace asserts with checks part 2 * Update no args function signatures with void, to help compiler to track incorrect usage * More unavoidable void * Update PVS config and code to make it happy * Format sources * nfc: fix checks * dead code cleanup & include fixes Co-authored-by: gornekich <n.gorbadey@gmail.com> Co-authored-by: hedger <hedger@users.noreply.github.com> Co-authored-by: hedger <hedger@nanode.su>
112 lines
2.5 KiB
C
112 lines
2.5 KiB
C
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "stm32wbxx.h"
|
|
#include "stdbool.h"
|
|
|
|
typedef enum {
|
|
FuriHalBusAHB1_GRP1,
|
|
FuriHalBusDMA1,
|
|
FuriHalBusDMA2,
|
|
FuriHalBusDMAMUX1,
|
|
FuriHalBusCRC,
|
|
FuriHalBusTSC,
|
|
|
|
FuriHalBusAHB2_GRP1,
|
|
FuriHalBusGPIOA,
|
|
FuriHalBusGPIOB,
|
|
FuriHalBusGPIOC,
|
|
FuriHalBusGPIOD,
|
|
FuriHalBusGPIOE,
|
|
FuriHalBusGPIOH,
|
|
#if defined(ADC_SUPPORT_5_MSPS)
|
|
FuriHalBusADC,
|
|
#endif
|
|
FuriHalBusAES1,
|
|
|
|
FuriHalBusAHB3_GRP1,
|
|
FuriHalBusQUADSPI,
|
|
FuriHalBusPKA,
|
|
FuriHalBusAES2,
|
|
FuriHalBusRNG,
|
|
FuriHalBusHSEM,
|
|
FuriHalBusIPCC,
|
|
FuriHalBusFLASH,
|
|
|
|
FuriHalBusAPB1_GRP1,
|
|
FuriHalBusTIM2,
|
|
FuriHalBusLCD,
|
|
FuriHalBusSPI2,
|
|
FuriHalBusI2C1,
|
|
FuriHalBusI2C3,
|
|
FuriHalBusCRS,
|
|
FuriHalBusUSB,
|
|
FuriHalBusLPTIM1,
|
|
|
|
FuriHalBusAPB1_GRP2,
|
|
FuriHalBusLPUART1,
|
|
FuriHalBusLPTIM2,
|
|
|
|
FuriHalBusAPB2_GRP1,
|
|
#if defined(ADC_SUPPORT_2_5_MSPS)
|
|
FuriHalBusADC,
|
|
#endif
|
|
FuriHalBusTIM1,
|
|
FuriHalBusSPI1,
|
|
FuriHalBusUSART1,
|
|
FuriHalBusTIM16,
|
|
FuriHalBusTIM17,
|
|
FuriHalBusSAI1,
|
|
|
|
FuriHalBusAPB3_GRP1,
|
|
FuriHalBusRF,
|
|
|
|
FuriHalBusMAX,
|
|
} FuriHalBus;
|
|
|
|
/** Early initialization */
|
|
void furi_hal_bus_init_early(void);
|
|
|
|
/** Early de-initialization */
|
|
void furi_hal_bus_deinit_early(void);
|
|
|
|
/**
|
|
* Enable a peripheral by turning the clocking on and deasserting the reset.
|
|
* @param [in] bus Peripheral to be enabled.
|
|
* @warning Peripheral must be in disabled state in order to be enabled.
|
|
*/
|
|
void furi_hal_bus_enable(FuriHalBus bus);
|
|
|
|
/**
|
|
* Reset a peripheral by sequentially asserting and deasserting the reset.
|
|
* @param [in] bus Peripheral to be reset.
|
|
* @warning Peripheral must be in enabled state in order to be reset.
|
|
*/
|
|
void furi_hal_bus_reset(FuriHalBus bus);
|
|
|
|
/**
|
|
* Disable a peripheral by turning the clocking off and asserting the reset.
|
|
* @param [in] bus Peripheral to be disabled.
|
|
* @warning Peripheral must be in enabled state in order to be disabled.
|
|
*/
|
|
void furi_hal_bus_disable(FuriHalBus bus);
|
|
|
|
/** Check if peripheral is enabled
|
|
*
|
|
* @warning FuriHalBusAPB3_GRP1 is a special group of shared peripherals, for
|
|
* core1 its clock is always on and the only status we can report is
|
|
* peripheral reset status. Check code and Reference Manual for
|
|
* details.
|
|
*
|
|
* @param[in] bus The peripheral to check
|
|
*
|
|
* @return true if enabled or always enabled, false otherwise
|
|
*/
|
|
bool furi_hal_bus_is_enabled(FuriHalBus bus);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|