mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-03 00:31:57 +00:00
Any word started with underscore followed by and uppercase letter or a second underscore is a reserved word according with C99. Signed-off-by: Flavio Ceolin <flavio.ceolin@intel.com>
16 lines
485 B
C
16 lines
485 B
C
/*
|
|
* Copyright (c) 2017 Linaro Limited
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
#ifndef ZEPHYR_INCLUDE_DT_BINDINGS_I2C_I2C_H_
|
|
#define ZEPHYR_INCLUDE_DT_BINDINGS_I2C_I2C_H_
|
|
|
|
#define I2C_BITRATE_STANDARD 100000 /* 100 Kbit/s */
|
|
#define I2C_BITRATE_FAST 400000 /* 400 Kbit/s */
|
|
#define I2C_BITRATE_FAST_PLUS 1000000 /* 1 Mbit/s */
|
|
#define I2C_BITRATE_HIGH 3400000 /* 3.4 Mbit/s */
|
|
#define I2C_BITRATE_ULTRA 5000000 /* 5 Mbit/s */
|
|
|
|
#endif /* ZEPHYR_INCLUDE_DT_BINDINGS_I2C_I2C_H_ */
|