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>
12 lines
260 B
C
12 lines
260 B
C
/*
|
|
* Copyright (c) 2018 qianfan Zhao <qianfanguijin@163.com>
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef _STM32F2X_SOC_REGISTERS_H_
|
|
#define _STM32F2X_SOC_REGISTERS_H_
|
|
|
|
/* include register mapping headers */
|
|
|
|
#endif /* _STM32F2X_SOC_REGISTERS_H_ */
|