76e3fd3060
* Firmware, Bootloader: add f3 target. Refactor code to be portable across targets. * Firmware: remove bkpt * Makefile: debug agent. Debug: f3 platform throw openocd. * freertos-openocd helper * separate hal resources * return of input_dump app * using hew target resources abstration layer for backlight and blink * dirty hack for input driver, f3 has no charging pin * worked input interrupts * working display * F3: switch to 32mHz resonator * F3: configure SD_CS pin * NFC: port to F3. * fat uart app * sd card hal api * separate CC1101 spi config * faster spi gpio for sd card * Assets: disable LFS * Cube: disable css on LSE * Input: format code * Make: add bootloader source code to formatting rule * F3: enable rf by default, adjust clock settings, map all pins where they should be. * libs for coreglitch_demo_0 * nvic priority * bus clocks all to 64 * lf-rfid timer and pin * irda * ir rx setup * tim2 irq handler * Makefile: environment aware mkdir * Makefile, Irukagotchi: commit seq number. * split falling and rising ir rx events * Makefile: proper git branch detect on old git. Firmware: api fix. * fix irda * Makefile,Irukagotchi: date timestamp. * NFC: adjust SPI speed * Irukagotchi: format code * Make: add blackmagic debug in host mode * Makefile: detach blackmagic from terminal signals * Makefile,Irukagotchi: stamp target * add F3 bootloader/firmware to CI Co-authored-by: Aleksandr Kutuzov <aku@plooks.com> Co-authored-by: DrZlo13 <who.just.the.doctor@gmail.com> Co-authored-by: aanper <mail@s3f.ru>
191 lines
5.8 KiB
C
191 lines
5.8 KiB
C
/* USER CODE BEGIN Header */
|
|
/**
|
|
******************************************************************************
|
|
* @file : main.h
|
|
* @brief : Header for main.c file.
|
|
* This file contains the common defines of the application.
|
|
******************************************************************************
|
|
* @attention
|
|
*
|
|
* <h2><center>© Copyright (c) 2020 STMicroelectronics.
|
|
* All rights reserved.</center></h2>
|
|
*
|
|
* This software component is licensed by ST under Ultimate Liberty license
|
|
* SLA0044, the "License"; You may not use this file except in compliance with
|
|
* the License. You may obtain a copy of the License at:
|
|
* www.st.com/SLA0044
|
|
*
|
|
******************************************************************************
|
|
*/
|
|
/* USER CODE END Header */
|
|
|
|
/* Define to prevent recursive inclusion -------------------------------------*/
|
|
#ifndef __MAIN_H
|
|
#define __MAIN_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/* Includes ------------------------------------------------------------------*/
|
|
#include "stm32wbxx_hal.h"
|
|
|
|
/* Private includes ----------------------------------------------------------*/
|
|
/* USER CODE BEGIN Includes */
|
|
|
|
/* USER CODE END Includes */
|
|
|
|
/* Exported types ------------------------------------------------------------*/
|
|
/* USER CODE BEGIN ET */
|
|
|
|
/* USER CODE END ET */
|
|
|
|
/* Exported constants --------------------------------------------------------*/
|
|
/* USER CODE BEGIN EC */
|
|
|
|
/* USER CODE END EC */
|
|
|
|
/* Exported macro ------------------------------------------------------------*/
|
|
/* USER CODE BEGIN EM */
|
|
|
|
/* USER CODE END EM */
|
|
|
|
/* Exported functions prototypes ---------------------------------------------*/
|
|
void Error_Handler(void);
|
|
|
|
/* USER CODE BEGIN EFP */
|
|
|
|
/* USER CODE END EFP */
|
|
|
|
/* Private defines -----------------------------------------------------------*/
|
|
#define BUTTON_BACK_Pin GPIO_PIN_13
|
|
#define BUTTON_BACK_GPIO_Port GPIOC
|
|
#define BUTTON_BACK_EXTI_IRQn EXTI15_10_IRQn
|
|
#define QUARTZ_32MHZ_IN_Pin GPIO_PIN_14
|
|
#define QUARTZ_32MHZ_IN_GPIO_Port GPIOC
|
|
#define QUARTZ_32MHZ_OUT_Pin GPIO_PIN_15
|
|
#define QUARTZ_32MHZ_OUT_GPIO_Port GPIOC
|
|
#define BOOT0_Pin GPIO_PIN_3
|
|
#define BOOT0_GPIO_Port GPIOH
|
|
#define SPEAKER_Pin GPIO_PIN_8
|
|
#define SPEAKER_GPIO_Port GPIOB
|
|
#define IR_TX_Pin GPIO_PIN_9
|
|
#define IR_TX_GPIO_Port GPIOB
|
|
#define PC0_Pin GPIO_PIN_0
|
|
#define PC0_GPIO_Port GPIOC
|
|
#define PC1_Pin GPIO_PIN_1
|
|
#define PC1_GPIO_Port GPIOC
|
|
#define BUTTON_OK_Pin GPIO_PIN_2
|
|
#define BUTTON_OK_GPIO_Port GPIOC
|
|
#define BUTTON_OK_EXTI_IRQn EXTI2_IRQn
|
|
#define PC3_Pin GPIO_PIN_3
|
|
#define PC3_GPIO_Port GPIOC
|
|
#define IR_RX_Pin GPIO_PIN_0
|
|
#define IR_RX_GPIO_Port GPIOA
|
|
#define LED_RED_Pin GPIO_PIN_1
|
|
#define LED_RED_GPIO_Port GPIOA
|
|
#define LED_GREEN_Pin GPIO_PIN_2
|
|
#define LED_GREEN_GPIO_Port GPIOA
|
|
#define LED_BLUE_Pin GPIO_PIN_3
|
|
#define LED_BLUE_GPIO_Port GPIOA
|
|
#define PA4_Pin GPIO_PIN_4
|
|
#define PA4_GPIO_Port GPIOA
|
|
#define PA5_Pin GPIO_PIN_5
|
|
#define PA5_GPIO_Port GPIOA
|
|
#define PA6_Pin GPIO_PIN_6
|
|
#define PA6_GPIO_Port GPIOA
|
|
#define PA7_Pin GPIO_PIN_7
|
|
#define PA7_GPIO_Port GPIOA
|
|
#define RFID_PULL_Pin GPIO_PIN_8
|
|
#define RFID_PULL_GPIO_Port GPIOA
|
|
#define RFID_PULL_EXTI_IRQn EXTI9_5_IRQn
|
|
#define I2C_SCL_Pin GPIO_PIN_9
|
|
#define I2C_SCL_GPIO_Port GPIOA
|
|
#define CC1101_G0_Pin GPIO_PIN_4
|
|
#define CC1101_G0_GPIO_Port GPIOC
|
|
#define RFID_RF_IN_Pin GPIO_PIN_5
|
|
#define RFID_RF_IN_GPIO_Port GPIOC
|
|
#define PB2_Pin GPIO_PIN_2
|
|
#define PB2_GPIO_Port GPIOB
|
|
#define BUTTON_UP_Pin GPIO_PIN_10
|
|
#define BUTTON_UP_GPIO_Port GPIOB
|
|
#define BUTTON_UP_EXTI_IRQn EXTI15_10_IRQn
|
|
#define BUTTON_LEFT_Pin GPIO_PIN_11
|
|
#define BUTTON_LEFT_GPIO_Port GPIOB
|
|
#define BUTTON_LEFT_EXTI_IRQn EXTI15_10_IRQn
|
|
#define DISPLAY_RST_Pin GPIO_PIN_0
|
|
#define DISPLAY_RST_GPIO_Port GPIOB
|
|
#define BUTTON_DOWN_Pin GPIO_PIN_1
|
|
#define BUTTON_DOWN_GPIO_Port GPIOB
|
|
#define BUTTON_DOWN_EXTI_IRQn EXTI1_IRQn
|
|
#define NFC_CS_Pin GPIO_PIN_4
|
|
#define NFC_CS_GPIO_Port GPIOE
|
|
#define BUTTON_RIGHT_Pin GPIO_PIN_12
|
|
#define BUTTON_RIGHT_GPIO_Port GPIOB
|
|
#define BUTTON_RIGHT_EXTI_IRQn EXTI15_10_IRQn
|
|
#define RFID_OUT_Pin GPIO_PIN_13
|
|
#define RFID_OUT_GPIO_Port GPIOB
|
|
#define iBTN_Pin GPIO_PIN_14
|
|
#define iBTN_GPIO_Port GPIOB
|
|
#define SPI_D_MOSI_Pin GPIO_PIN_15
|
|
#define SPI_D_MOSI_GPIO_Port GPIOB
|
|
#define DISPLAY_DI_Pin GPIO_PIN_6
|
|
#define DISPLAY_DI_GPIO_Port GPIOC
|
|
#define I2C_SDA_Pin GPIO_PIN_10
|
|
#define I2C_SDA_GPIO_Port GPIOA
|
|
#define DISPLAY_BACKLIGHT_Pin GPIO_PIN_15
|
|
#define DISPLAY_BACKLIGHT_GPIO_Port GPIOA
|
|
#define PC10_Pin GPIO_PIN_10
|
|
#define PC10_GPIO_Port GPIOC
|
|
#define DISPLAY_CS_Pin GPIO_PIN_11
|
|
#define DISPLAY_CS_GPIO_Port GPIOC
|
|
#define SD_CS_Pin GPIO_PIN_12
|
|
#define SD_CS_GPIO_Port GPIOC
|
|
#define CC1101_CS_Pin GPIO_PIN_0
|
|
#define CC1101_CS_GPIO_Port GPIOD
|
|
#define SPI_D_SCK_Pin GPIO_PIN_1
|
|
#define SPI_D_SCK_GPIO_Port GPIOD
|
|
#define SPI_R_SCK_Pin GPIO_PIN_3
|
|
#define SPI_R_SCK_GPIO_Port GPIOB
|
|
#define SPI_R_MISO_Pin GPIO_PIN_4
|
|
#define SPI_R_MISO_GPIO_Port GPIOB
|
|
#define SPI_R_MOSI_Pin GPIO_PIN_5
|
|
#define SPI_R_MOSI_GPIO_Port GPIOB
|
|
/* USER CODE BEGIN Private defines */
|
|
|
|
#define MISO_PIN GpioPin{.port = SPI_R_MISO_GPIO_Port, .pin = SPI_R_MISO_Pin}
|
|
|
|
#define SPI_R hspi1
|
|
#define SPI_D hspi2
|
|
#define SPI_SD_HANDLE SPI_R
|
|
|
|
extern TIM_HandleTypeDef htim1;
|
|
extern TIM_HandleTypeDef htim2;
|
|
extern TIM_HandleTypeDef htim16;
|
|
|
|
#define TIM_A htim1
|
|
#define TIM_B htim2
|
|
#define TIM_C htim16
|
|
|
|
#define SPEAKER_TIM htim16
|
|
#define SPEAKER_CH TIM_CHANNEL_1
|
|
|
|
#define LFRFID_TIM htim1
|
|
#define LFRFID_CH TIM_CHANNEL_1
|
|
|
|
#define IRDA_TIM htim1
|
|
#define IRDA_CH TIM_CHANNEL_3
|
|
|
|
#define NFC_IRQ_Pin RFID_PULL_Pin
|
|
#define NFC_IRQ_GPIO_Port RFID_PULL_GPIO_Port
|
|
|
|
/* USER CODE END Private defines */
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* __MAIN_H */
|
|
|
|
/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
|