4d6b170769
* Fixing compiler warnings with -Wextra * More warnings suppression, WIP * Even more warning fixes * Added new lines at end of text files. * Padding fix * Additional fixes to warnings on different build configurations; added -Wextra to default build pipeline * Fixes for Secplus v1 * -additional warnings * +-Wredundant-decls fixes * FuriHal: print stack overflow task name in console * FuriHal: add missing include Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
32 lines
722 B
C
32 lines
722 B
C
#pragma once
|
|
|
|
#include <furi_hal_i2c_types.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/** Internal(power) i2c bus, I2C1, under reset when not used */
|
|
extern FuriHalI2cBus furi_hal_i2c_bus_power;
|
|
|
|
/** External i2c bus, I2C3, under reset when not used */
|
|
extern FuriHalI2cBus furi_hal_i2c_bus_external;
|
|
|
|
/** Handle for internal(power) i2c bus
|
|
* Bus: furi_hal_i2c_bus_external
|
|
* Pins: PA9(SCL) / PA10(SDA), float on release
|
|
* Params: 400khz
|
|
*/
|
|
extern FuriHalI2cBusHandle furi_hal_i2c_handle_power;
|
|
|
|
/** Handle for external i2c bus
|
|
* Bus: furi_hal_i2c_bus_external
|
|
* Pins: PC0(SCL) / PC1(SDA), float on release
|
|
* Params: 100khz
|
|
*/
|
|
extern FuriHalI2cBusHandle furi_hal_i2c_handle_external;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|