* Targets: add F6 * F6: Update linker script for use with internal storage * F6: synchronize with F5, add all changes arriving in V9 board, update cube project. Github workflow: add multi-target build, add F6 to build targets. * CI: fix full assembly * CI: better artifact naming scheme * CI: fix artifacts wildcard * F6: Swap C10 - A15, vibro and sdcard detect pins
		
			
				
	
	
		
			43 lines
		
	
	
		
			758 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			758 B
		
	
	
	
		
			C
		
	
	
	
	
	
#pragma once
 | 
						|
 | 
						|
#include <stm32wbxx.h>
 | 
						|
#include <stm32wbxx_ll_gpio.h>
 | 
						|
 | 
						|
#ifdef __cplusplus
 | 
						|
extern "C" {
 | 
						|
#endif
 | 
						|
 | 
						|
#define POWER_I2C_SCL_Pin LL_GPIO_PIN_9
 | 
						|
#define POWER_I2C_SCL_GPIO_Port GPIOA
 | 
						|
#define POWER_I2C_SDA_Pin LL_GPIO_PIN_10
 | 
						|
#define POWER_I2C_SDA_GPIO_Port GPIOA
 | 
						|
 | 
						|
#define POWER_I2C I2C1
 | 
						|
/* Timing register value is computed with the STM32CubeMX Tool,
 | 
						|
  * Fast Mode @100kHz with I2CCLK = 64 MHz,
 | 
						|
  * rise time = 0ns, fall time = 0ns
 | 
						|
  */
 | 
						|
#define POWER_I2C_TIMINGS 0x10707DBC
 | 
						|
 | 
						|
/* Input Keys */
 | 
						|
typedef enum {
 | 
						|
    InputKeyUp,
 | 
						|
    InputKeyDown,
 | 
						|
    InputKeyRight,
 | 
						|
    InputKeyLeft,
 | 
						|
    InputKeyOk,
 | 
						|
    InputKeyBack,
 | 
						|
} InputKey;
 | 
						|
 | 
						|
/* Light */
 | 
						|
typedef enum {
 | 
						|
    LightRed,
 | 
						|
    LightGreen,
 | 
						|
    LightBlue,
 | 
						|
    LightBacklight,
 | 
						|
} Light;
 | 
						|
 | 
						|
#ifdef __cplusplus
 | 
						|
}
 | 
						|
#endif
 |