17 lines
194 B
C
17 lines
194 B
C
// SPDX-License-Identifier: Apache-2.0
|
|
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <stdint.h>
|
|
|
|
struct Esp32GpioConfig {
|
|
uint8_t gpioCount;
|
|
};
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|