18 lines
216 B
C
18 lines
216 B
C
// SPDX-License-Identifier: Apache-2.0
|
|
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
struct Tca9534Config {
|
|
/** Address on bus */
|
|
uint8_t address;
|
|
};
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|