summaryrefslogtreecommitdiff
path: root/zephyr/include/emul/i2c_mock.h
blob: e9e8d972520df71d44ca3703da11a7d67a5558c6 (plain)
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
32
33
34
35
/* Copyright 2021 The Chromium OS Authors. All rights reserved.
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#ifndef ZEPHYR_INCLUDE_EMUL_I2C_MOCK_H_
#define ZEPHYR_INCLUDE_EMUL_I2C_MOCK_H_

#include <emul.h>
#include <drivers/i2c_emul.h>

/**
 * @brief reset the I2C mock.
 *
 * @param emul The mock device to reset.
 */
void i2c_mock_reset(const struct emul *emul);

/**
 * @brief Get the i2c emulator pointer from the top level mock.
 *
 * @param emul The mock device to query
 * @return Pointer to the i2c emulator struct
 */
struct i2c_emul *i2c_mock_to_i2c_emul(const struct emul *emul);

/**
 * @brief Get the I2C address of the mock
 *
 * @param emul The mock device to query
 * @return The address on the I2C bus
 */
uint16_t i2c_mock_get_addr(const struct emul *emul);

#endif /* ZEPHYR_INCLUDE_EMUL_I2C_MOCK_H_ */