TactilityC: Radio - Getter for DevId
This commit is contained in:
parent
795a882280
commit
f5d71a59b5
@ -86,6 +86,13 @@ RadioHandle tt_hal_radio_alloc(DeviceId radioId);
|
|||||||
*/
|
*/
|
||||||
void tt_hal_radio_free(RadioHandle handle);
|
void tt_hal_radio_free(RadioHandle handle);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the device identifier for the radio driver object.
|
||||||
|
* @param[in] handle the radio driver handle
|
||||||
|
* @return the device identifier
|
||||||
|
*/
|
||||||
|
DeviceId tt_hal_radio_get_device_id(RadioHandle handle);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get the name for the radio driver object.
|
* Get the name for the radio driver object.
|
||||||
* @param[in] handle the radio driver handle
|
* @param[in] handle the radio driver handle
|
||||||
|
|||||||
@ -50,6 +50,11 @@ extern "C" {
|
|||||||
delete wrapper;
|
delete wrapper;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
DeviceId tt_hal_radio_get_device_id(RadioHandle handle) {
|
||||||
|
auto wrapper = static_cast<DeviceWrapper*>(handle);
|
||||||
|
return wrapper->device->getId();
|
||||||
|
}
|
||||||
|
|
||||||
const char* tt_hal_radio_get_name(RadioHandle handle) {
|
const char* tt_hal_radio_get_name(RadioHandle handle) {
|
||||||
auto wrapper = static_cast<DeviceWrapper*>(handle);
|
auto wrapper = static_cast<DeviceWrapper*>(handle);
|
||||||
return wrapper->name.c_str();
|
return wrapper->name.c_str();
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user