mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-27 14:10:24 +08:00
ecf2d82159
* Synchronize the code of the rt mart branch to the master branch. * TTY device * Add lwP code from rt-smart * Add vnode in DFS, but DFS will be re-write for rt-smart * There are three libcpu for rt-smart: * arm/cortex-a, arm/aarch64 * riscv64 Co-authored-by: Rbb666 <zhangbingru@rt-thread.com> Co-authored-by: zhkag <zhkag@foxmail.com>
17 lines
308 B
C
17 lines
308 B
C
/* 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
|