2024-01-03 16:57:33 +08:00
|
|
|
/*
|
|
|
|
|
* SPDX-FileCopyrightText: 2022-2024 Espressif Systems (Shanghai) CO LTD
|
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
*/
|
2018-10-15 10:19:02 +08:00
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
2024-01-03 16:57:33 +08:00
|
|
|
#include "driver/i2c_master.h"
|
|
|
|
|
|
2018-10-15 10:19:02 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
void register_i2ctools(void);
|
|
|
|
|
|
2024-01-03 16:57:33 +08:00
|
|
|
extern i2c_master_bus_handle_t tool_bus_handle;
|
|
|
|
|
|
2018-10-15 10:19:02 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|