21 lines
333 B
C
21 lines
333 B
C
/*
|
|
* Copyright (c) 2021, ATL Electronics
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* @file SoC configuration header for the GD32F403 SoC series.
|
|
*/
|
|
|
|
#ifndef _SOC__H_
|
|
#define _SOC__H_
|
|
|
|
#include <sys/util.h>
|
|
|
|
#ifndef _ASMLANGUAGE
|
|
#include <devicetree.h>
|
|
#include <gd32f403.h>
|
|
#endif /* !_ASMLANGUAGE */
|
|
|
|
#endif /* _SOC__H_ */
|