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>
13 lines
262 B
C
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_ */
|