2014-07-02 13:42:37 +01:00
|
|
|
// We use the ST Cube HAL library for most hardware peripherals
|
2015-07-28 16:36:26 +01:00
|
|
|
#include STM32_HAL_H
|
2014-07-02 13:42:37 +01:00
|
|
|
|
2015-10-29 16:03:10 +00:00
|
|
|
// The unique id address differs per MCU. Ideally this define should
|
|
|
|
// go in some MCU-specific header, but for now it lives here.
|
|
|
|
#if defined(MCU_SERIES_F4)
|
|
|
|
#define MP_HAL_UNIQUE_ID_ADDRESS (0x1fff7a10)
|
|
|
|
#elif defined(MCU_SERIES_F7)
|
|
|
|
#define MP_HAL_UNIQUE_ID_ADDRESS (0x1ff0f420)
|
|
|
|
#else
|
2015-10-30 23:03:58 +00:00
|
|
|
#error mphalport.h: Unrecognized MCU_SERIES
|
2015-10-29 16:03:10 +00:00
|
|
|
#endif
|
|
|
|
|
2014-07-02 13:42:37 +01:00
|
|
|
// Basic GPIO functions
|
|
|
|
#define GPIO_read_pin(gpio, pin) (((gpio)->IDR >> (pin)) & 1)
|
2015-08-03 23:07:20 +01:00
|
|
|
#if defined(MCU_SERIES_F7)
|
2015-07-28 19:13:33 +01:00
|
|
|
#define GPIO_set_pin(gpio, pin_mask) (((gpio)->BSRR) = (pin_mask))
|
|
|
|
#define GPIO_clear_pin(gpio, pin_mask) (((gpio)->BSRR) = ((pin_mask) << 16))
|
|
|
|
#else
|
2014-07-02 13:42:37 +01:00
|
|
|
#define GPIO_set_pin(gpio, pin_mask) (((gpio)->BSRRL) = (pin_mask))
|
|
|
|
#define GPIO_clear_pin(gpio, pin_mask) (((gpio)->BSRRH) = (pin_mask))
|
2015-07-28 19:13:33 +01:00
|
|
|
#endif
|
2014-07-22 15:57:36 +01:00
|
|
|
#define GPIO_read_output_pin(gpio, pin) (((gpio)->ODR >> (pin)) & 1)
|
2014-10-23 14:25:32 +01:00
|
|
|
|
2015-08-03 00:05:16 +01:00
|
|
|
void mp_hal_gpio_clock_enable(GPIO_TypeDef *gpio);
|
|
|
|
|
2015-10-30 23:03:58 +00:00
|
|
|
extern const unsigned char mp_hal_status_to_errno_table[4];
|
2014-10-23 14:25:32 +01:00
|
|
|
|
|
|
|
NORETURN void mp_hal_raise(HAL_StatusTypeDef status);
|
2014-11-27 16:58:31 +00:00
|
|
|
void mp_hal_set_interrupt_char(int c); // -1 to disable
|
2015-02-13 15:04:53 +00:00
|
|
|
|
2015-10-27 20:31:42 +00:00
|
|
|
#define mp_hal_delay_ms HAL_Delay
|
|
|
|
#define mp_hal_ticks_ms HAL_GetTick
|