Files
tactility/Drivers/ch422g-module/include/drivers/ch422g.h
T
2026-07-20 23:43:17 +02:00

19 lines
378 B
C

// SPDX-License-Identifier: Apache-2.0
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern "C" {
#endif
struct Ch422gConfig {
/** Address of the WR_SET (system config) pseudo-register. RD_IO and WR_IO are separate
* fixed pseudo-addresses (the chip has no address-select pins, so this is always 0x24). */
uint8_t address;
};
#ifdef __cplusplus
}
#endif