Tactility/TactilityC/Include/tt_hal_device.h
2025-11-01 09:38:32 +01:00

35 lines
872 B
C

#pragma once
#include <stdint.h>
#include <stdbool.h>
#ifdef __cplusplus
extern "C" {
#endif
typedef enum {
DEVICE_TYPE_I2C,
DEVICE_TYPE_DISPLAY,
DEVICE_TYPE_TOUCH,
DEVICE_TYPE_SDCARD,
DEVICE_TYPE_KEYBOARD,
DEVICE_TYPE_POWER,
DEVICE_TYPE_GPS
} DeviceType;
typedef uint32_t DeviceId;
/**
* Find one or more devices of a certain type.
* @param[in] type the type to look for
* @param[inout] deviceIds the output ids, which should fit at least maxCount amount of devices
* @param[out] count the resulting number of device ids that were returned
* @param[in] maxCount the maximum number of items that the "deviceIds" output can contain (minimum value is 1)
* @return true if one or more devices were found
*/
bool tt_hal_device_find(DeviceType type, DeviceId* deviceIds, uint16_t* count, uint16_t maxCount);
#ifdef __cplusplus
}
#endif