forked from zephyrproject-rtos/zephyr
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmax32_clocks.h
More file actions
31 lines (22 loc) · 809 Bytes
/
max32_clocks.h
File metadata and controls
31 lines (22 loc) · 809 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*
* Copyright 2026 Analog Devices, Inc.
*
* SPDX-License-Identifier: Apache-2.0
*/
#ifndef ZEPHYR_DRIVERS_CLOCK_MANAGEMENT_ADI_MAX32_CLOCKS_H_
#define ZEPHYR_DRIVERS_CLOCK_MANAGEMENT_ADI_MAX32_CLOCKS_H_
#ifdef __cplusplus
extern "C" {
#endif
/** @cond INTERNAL_HIDDEN */
#define Z_CLOCK_MANAGEMENT_DATA_DEFINE_adi_max32_clock_source(node_id, prop, idx)
#define Z_CLOCK_MANAGEMENT_DATA_GET_adi_max32_clock_source(node_id, prop, idx) \
DT_PHA_BY_IDX(node_id, prop, idx, gate)
#define Z_CLOCK_MANAGEMENT_DATA_DEFINE_adi_max32_clock_div(node_id, prop, idx)
#define Z_CLOCK_MANAGEMENT_DATA_GET_adi_max32_clock_div(node_id, prop, idx) \
DT_PHA_BY_IDX(node_id, prop, idx, divider)
/** @endcond */
#ifdef __cplusplus
}
#endif
#endif /* ZEPHYR_DRIVERS_CLOCK_MANAGEMENT_ADI_MAX32_CLOCKS_H_ */