zephyr/soc/arm/st_stm32/stm32f7/soc_registers.h
Song Qiang 2fb616efbe soc: arm: st_stm32: Using LL library to implement gpio functions
The original implementation of gpio functions access registers
directly. Using LL library can add a set of unifying access
functions for all series of stm32 for avoiding accessing low level
code, and improve readability.

Signed-off-by: Song Qiang <songqiang1304521@gmail.com>
2019-01-10 13:09:19 -06:00

13 lines
262 B
C

/*
* Copyright (c) 2018 Yurii Hamann
*
* SPDX-License-Identifier: Apache-2.0
*/
#ifndef _STM32F7_SOC_REGISTERS_H_
#define _STM32F7_SOC_REGISTERS_H_
/* include register mapping headers */
#include "flash_registers.h"
#endif /* _STM32F7_SOC_REGISTERS_H_ */