This introduces the only CH32 Serie Qingke V4C SoC, CH32V208 Signed-off-by: Camille BAUD <mail@massdriver.space>
21 lines
310 B
C
21 lines
310 B
C
/*
|
|
* Copyright (c) 2024 Dhiru Kholia
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef _CH32FUN_H
|
|
#define _CH32FUN_H
|
|
|
|
#if defined(CONFIG_SOC_CH32V003)
|
|
#define CH32V003 1
|
|
#include <ch32v003fun.h>
|
|
#endif
|
|
|
|
#if defined(CONFIG_SOC_SERIES_QINGKE_V4C)
|
|
#define CH32V20x 1
|
|
#include <ch32v003fun.h>
|
|
#endif
|
|
|
|
#endif
|