WS63 SDK 文档 7021f4f@fbb_ws63
ws63 和 ws63e 解决方案的 SDK 文档
载入中...
搜索中...
未找到
hal_tcxo_v150_regs_def.h
浏览该文件的文档.
1
10#ifndef HAL_TCXO_V150_REGS_DEF_H
11#define HAL_TCXO_V150_REGS_DEF_H
12
13#include <stdint.h>
14
15#ifdef __cplusplus
16#if __cplusplus
17extern "C" {
18#endif /* __cplusplus */
19#endif /* __cplusplus */
20
32typedef union tcxo_count_data {
33 uint32_t d32;
34 struct {
35 uint32_t data : 16;
40 } b;
42
48typedef union tcxo_status_data {
49 uint32_t d32;
50 struct {
51 uint32_t refresh : 1;
52 uint32_t clear : 1;
53 uint32_t enable : 1;
54 uint32_t reserved : 1;
55 uint32_t valid : 1;
56 } b;
58
62typedef struct tcxo_regs {
63 volatile uint32_t status;
64 volatile uint32_t count0;
65 volatile uint32_t count1;
66 volatile uint32_t count2;
67 volatile uint32_t count3;
69
74#ifdef __cplusplus
75#if __cplusplus
76}
77#endif /* __cplusplus */
78#endif /* __cplusplus */
79
80#endif
struct tcxo_regs tcxo_regs_t
Registers associated with TCXO.
union tcxo_count_data tcxo_count_data_t
This union represents the bit fields in the count register. Read the register into the d32 member the...
union tcxo_status_data tcxo_status_data_t
This union represents the bit fields in the count register. Read the register into the d32 member the...
Registers associated with TCXO.
Definition hal_tcxo_v150_regs_def.h:62
volatile uint32_t count3
Definition hal_tcxo_v150_regs_def.h:67
volatile uint32_t count1
Definition hal_tcxo_v150_regs_def.h:65
volatile uint32_t status
Definition hal_tcxo_v150_regs_def.h:63
volatile uint32_t count0
Definition hal_tcxo_v150_regs_def.h:64
volatile uint32_t count2
Definition hal_tcxo_v150_regs_def.h:66
This union represents the bit fields in the count register. Read the register into the d32 member the...
Definition hal_tcxo_v150_regs_def.h:32
uint32_t d32
Definition hal_tcxo_v150_regs_def.h:33
uint32_t data
Definition hal_tcxo_v150_regs_def.h:35
struct tcxo_count_data::@29 b
This union represents the bit fields in the count register. Read the register into the d32 member the...
Definition hal_tcxo_v150_regs_def.h:48
uint32_t refresh
Definition hal_tcxo_v150_regs_def.h:51
uint32_t d32
Definition hal_tcxo_v150_regs_def.h:49
uint32_t valid
Definition hal_tcxo_v150_regs_def.h:55
uint32_t clear
Definition hal_tcxo_v150_regs_def.h:52
struct tcxo_status_data::@30 b
uint32_t enable
Definition hal_tcxo_v150_regs_def.h:53
uint32_t reserved
Definition hal_tcxo_v150_regs_def.h:54