mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-05-23 08:27:34 +08:00
14 lines
229 B
C
14 lines
229 B
C
/*
|
|
* Copyright (c) 2021 Linaro Limited
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef __DT_FREQ_H
|
|
#define __DT_FREQ_H
|
|
|
|
#define DT_FREQ_K(x) ((x) * 1000)
|
|
#define DT_FREQ_M(x) ((x) * 1000 * 1000)
|
|
|
|
#endif /* __DT_FREQ_H */
|