123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178 |
- #ifndef __MAIN_H
- #define __MAIN_H
- #ifdef __cplusplus
- extern "C" {
- #endif
- #include "stm32g0xx.h"
- #include "stm32g0xx_ll_dma.h"
- #include "stm32g0xx_ll_i2c.h"
- #include "stm32g0xx_ll_rcc.h"
- #include "stm32g0xx_ll_bus.h"
- #include "stm32g0xx_ll_system.h"
- #include "stm32g0xx_ll_exti.h"
- #include "stm32g0xx_ll_cortex.h"
- #include "stm32g0xx_ll_utils.h"
- #include "stm32g0xx_ll_pwr.h"
- #include "stm32g0xx_ll_spi.h"
- #include "stm32g0xx_ll_tim.h"
- #include "stm32g0xx_ll_gpio.h"
- #include "stm32g0xx_ll_usart.h"
- #if defined(USE_FULL_ASSERT)
- #include "stm32_assert.h"
- #endif
- #include "board.h"
- #include "gpio.h"
- #include "i2c.h"
- #include "ds3231.h"
- #include "bme280.h"
- #include "rtos.h"
- #include "event-system.h"
- #include "list_event.h"
- typedef enum {
- DOWN = 0,
- UP = 1
- } updown_t;
- typedef enum {
- OFF = 0,
- ON = 1
- } onoff_t;
- typedef struct {
- uint32_t RTC_IRQ: 1;
- uint32_t SPI_TX_End: 1;
- uint32_t I2C_TX_End: 1;
- uint32_t I2C_RX_End: 1;
- uint32_t I2C_TX_Err: 1;
- uint32_t I2C_RX_Err: 1;
- uint32_t BME280: 1;
- uint32_t Blink_1: 1;
- uint32_t Blink_2: 1;
- uint32_t Blink_3: 1;
- uint32_t Blink_4: 1;
- uint32_t Blink_5: 1;
- uint32_t _reserv: 20;
- } flag_t;
- extern volatile flag_t Flag;
- typedef union {
- uint16_t u16;
- int16_t i16;
- struct {
- #ifdef LITTLE_ENDIAN
- uint8_t u8L;
- uint8_t u8H;
- #else
- uint8_t u8H;
- uint8_t u8L;
- #endif
- } s16;
- } nt16_t;
- typedef union {
- uint32_t u32;
- int32_t i32;
- struct {
- #ifdef LITTLE_ENDIAN
- uint16_t u16L;
- uint16_t u16H;
- #else
- uint16_t u16H;
- uint16_t u16L;
- #endif
- } s32;
- } nt32_t;
- void Error_Handler(void);
- #define BTN_NUM 4
- #define BTN1_PIN GPIO_IDR_ID2
- #define BTN2_PIN GPIO_IDR_ID12
- #define BTN3_PIN GPIO_IDR_ID4
- #define BTN4_PIN GPIO_IDR_ID5
- #define BTN1_STATE (BTN1_GPIO_Port->IDR & BTN1_PIN)
- #define BTN2_STATE (BTN2_GPIO_Port->IDR & BTN2_PIN)
- #define BTN3_STATE (BTN3_GPIO_Port->IDR & BTN3_PIN)
- #define BTN4_STATE (BTN4_GPIO_Port->IDR & BTN4_PIN)
- #define BTNS1_STATE (GPIOB->IDR & (BTN1_PIN | BTN3_PIN))
- #define BTNS2_STATE (GPIOA->IDR & (BTN2_PIN | BTN4_PIN))
- #define BTNS_STATE (BTNS1_STATE | BTNS2_STATE)
- #define BTN_SCAN_PERIOD 10
- #define BTN_SCAN_PAUSE 200
- #define BTN_TIME_PRESSED 30
- #define BTN_TIME_HOLDED 500
- #define BTN_TIME_REPEATED 50
- typedef struct {
- uint8_t time;
- es_event_t pressed;
- es_event_t holded;
- uint32_t pin;
-
- } btn_t;
- #ifdef __cplusplus
- }
- #endif
- #endif
|