mirror of
https://github.com/espressif/esp-idf.git
synced 2025-10-10 23:06:40 +00:00

removed unused console cli. removed unnecessary dependencies. behaviour changed: user must run the i2cconfig command before others updated pytest as well
18 lines
236 B
C
18 lines
236 B
C
/*
|
|
* SPDX-FileCopyrightText: 2022-2025 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void register_i2ctools(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|