4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-28 09:20:26 +08:00

17 lines
308 B
C
Raw Normal View History

/* SPDX-License-Identifier: GPL-2.0 */
/*
* Copyright (c) 2020 shengduiliang@allwinnertech.com
*/
#ifndef _CLK_FIXED_RATE_H
#define _CLK_FIXED_RATE_H
#define CLK_SRC_HOSC24M 0
#define CLK_SRC_LOSC 1
#define CLK_SRC_RC_16M 2
#define CLK_SRC_EXT_32K 3
#define CLK_SRC_NUMBER (CLK_SRC_EXT_32K + 1)
#endif