mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2024-12-20 11:51:48 +03:00
224d0aefe4
* First part of multitarget porting * Delete firmware/targets/f7/Inc directory * Delete firmware/targets/f7/Src directory * gpio: cli fixes; about: using version from HAL * sdk: path fixes * gui: include fixes * applications: more include fixes * gpio: ported to new apis * hal: introduced furi_hal_target_hw.h; libs: added one_wire * hal: f18 target * github: also build f18 by default * typo fix * fbt: removed extra checks on app list * api: explicitly bundling select mlib headers with sdk * hal: f18: changed INPUT_DEBOUNCE_TICKS to match f7 * cleaned up commented out code * docs: added info on hw targets * docs: targets: formatting fixes * f18: fixed link error * f18: fixed API version to match f7 * docs: hardware: minor wording fixes * faploader: added fw target check * docs: typo fixes * github: not building komi target by default * fbt: support for `targets` field for built-in apps * github: reworked build flow to exclude app_set; fbt: removed komi-specific appset; added additional target buildset check * github: fixed build; nfc: fixed pvs warnings * attempt to fix target id * f7, f18: removed certain HAL function from public API * apps: debug: enabled bt_debug_app for f18 * Targets: backport input pins configuration routine from F7 to F18 Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
117 lines
2.6 KiB
C
117 lines
2.6 KiB
C
#pragma once
|
|
|
|
#include <furi.h>
|
|
|
|
#include <stm32wbxx.h>
|
|
#include <stm32wbxx_ll_gpio.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/* Input Related Constants */
|
|
#define INPUT_DEBOUNCE_TICKS 4
|
|
|
|
/* Input Keys */
|
|
typedef enum {
|
|
InputKeyUp,
|
|
InputKeyDown,
|
|
InputKeyRight,
|
|
InputKeyLeft,
|
|
InputKeyOk,
|
|
InputKeyBack,
|
|
InputKeyMAX, /**< Special value */
|
|
} InputKey;
|
|
|
|
/* Light */
|
|
typedef enum {
|
|
LightRed = (1 << 0),
|
|
LightGreen = (1 << 1),
|
|
LightBlue = (1 << 2),
|
|
LightBacklight = (1 << 3),
|
|
} Light;
|
|
|
|
typedef struct {
|
|
const GpioPin* gpio;
|
|
const InputKey key;
|
|
const bool inverted;
|
|
const char* name;
|
|
} InputPin;
|
|
|
|
typedef struct {
|
|
const GpioPin* pin;
|
|
const char* name;
|
|
const bool debug;
|
|
} GpioPinRecord;
|
|
|
|
extern const InputPin input_pins[];
|
|
extern const size_t input_pins_count;
|
|
|
|
extern const GpioPinRecord gpio_pins[];
|
|
extern const size_t gpio_pins_count;
|
|
|
|
extern const GpioPin vibro_gpio;
|
|
extern const GpioPin ibutton_gpio;
|
|
|
|
extern const GpioPin gpio_display_cs;
|
|
extern const GpioPin gpio_display_rst_n;
|
|
extern const GpioPin gpio_display_di;
|
|
extern const GpioPin gpio_sdcard_cs;
|
|
extern const GpioPin gpio_sdcard_cd;
|
|
|
|
extern const GpioPin gpio_button_up;
|
|
extern const GpioPin gpio_button_down;
|
|
extern const GpioPin gpio_button_right;
|
|
extern const GpioPin gpio_button_left;
|
|
extern const GpioPin gpio_button_ok;
|
|
extern const GpioPin gpio_button_back;
|
|
|
|
extern const GpioPin gpio_spi_d_miso;
|
|
extern const GpioPin gpio_spi_d_mosi;
|
|
extern const GpioPin gpio_spi_d_sck;
|
|
|
|
extern const GpioPin gpio_ext_pc0;
|
|
extern const GpioPin gpio_ext_pc1;
|
|
extern const GpioPin gpio_ext_pc3;
|
|
extern const GpioPin gpio_ext_pb2;
|
|
extern const GpioPin gpio_ext_pb3;
|
|
extern const GpioPin gpio_ext_pa4;
|
|
extern const GpioPin gpio_ext_pa6;
|
|
extern const GpioPin gpio_ext_pa7;
|
|
|
|
extern const GpioPin gpio_ext_pc5;
|
|
extern const GpioPin gpio_ext_pc4;
|
|
extern const GpioPin gpio_ext_pa5;
|
|
extern const GpioPin gpio_ext_pb9;
|
|
extern const GpioPin gpio_ext_pa0;
|
|
extern const GpioPin gpio_ext_pa1;
|
|
extern const GpioPin gpio_ext_pa15;
|
|
extern const GpioPin gpio_ext_pe4;
|
|
extern const GpioPin gpio_ext_pa2;
|
|
extern const GpioPin gpio_ext_pb4;
|
|
extern const GpioPin gpio_ext_pb5;
|
|
extern const GpioPin gpio_ext_pd0;
|
|
extern const GpioPin gpio_ext_pb13;
|
|
|
|
extern const GpioPin gpio_usart_tx;
|
|
extern const GpioPin gpio_usart_rx;
|
|
extern const GpioPin gpio_i2c_power_sda;
|
|
extern const GpioPin gpio_i2c_power_scl;
|
|
|
|
extern const GpioPin gpio_speaker;
|
|
|
|
extern const GpioPin periph_power;
|
|
|
|
extern const GpioPin gpio_usb_dm;
|
|
extern const GpioPin gpio_usb_dp;
|
|
|
|
void furi_hal_resources_init_early();
|
|
|
|
void furi_hal_resources_deinit_early();
|
|
|
|
void furi_hal_resources_init();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|