#[allow(unused_imports)]
use crate::{
byte_converter::*, converting_high_level_callback_receiver::ConvertingHighLevelCallbackReceiver,
converting_receiver::BrickletRecvTimeoutError, device::*, error::TinkerforgeError, ip_connection::async_io::AsyncIpConnection,
low_level_traits::LowLevelRead,
};
#[allow(unused_imports)]
use futures_core::Stream;
#[allow(unused_imports)]
use tokio_stream::StreamExt;
pub enum DmxBrickletFunction {
SetDmxMode,
GetDmxMode,
WriteFrameLowLevel,
ReadFrameLowLevel,
SetFrameDuration,
GetFrameDuration,
GetFrameErrorCount,
SetCommunicationLedConfig,
GetCommunicationLedConfig,
SetErrorLedConfig,
GetErrorLedConfig,
SetFrameCallbackConfig,
GetFrameCallbackConfig,
GetSpitfpErrorCount,
SetBootloaderMode,
GetBootloaderMode,
SetWriteFirmwarePointer,
WriteFirmware,
SetStatusLedConfig,
GetStatusLedConfig,
GetChipTemperature,
Reset,
WriteUid,
ReadUid,
GetIdentity,
CallbackFrameStarted,
CallbackFrameAvailable,
CallbackFrameLowLevel,
CallbackFrameErrorCount,
}
impl From<DmxBrickletFunction> for u8 {
fn from(fun: DmxBrickletFunction) -> Self {
match fun {
DmxBrickletFunction::SetDmxMode => 1,
DmxBrickletFunction::GetDmxMode => 2,
DmxBrickletFunction::WriteFrameLowLevel => 3,
DmxBrickletFunction::ReadFrameLowLevel => 4,
DmxBrickletFunction::SetFrameDuration => 5,
DmxBrickletFunction::GetFrameDuration => 6,
DmxBrickletFunction::GetFrameErrorCount => 7,
DmxBrickletFunction::SetCommunicationLedConfig => 8,
DmxBrickletFunction::GetCommunicationLedConfig => 9,
DmxBrickletFunction::SetErrorLedConfig => 10,
DmxBrickletFunction::GetErrorLedConfig => 11,
DmxBrickletFunction::SetFrameCallbackConfig => 12,
DmxBrickletFunction::GetFrameCallbackConfig => 13,
DmxBrickletFunction::GetSpitfpErrorCount => 234,
DmxBrickletFunction::SetBootloaderMode => 235,
DmxBrickletFunction::GetBootloaderMode => 236,
DmxBrickletFunction::SetWriteFirmwarePointer => 237,
DmxBrickletFunction::WriteFirmware => 238,
DmxBrickletFunction::SetStatusLedConfig => 239,
DmxBrickletFunction::GetStatusLedConfig => 240,
DmxBrickletFunction::GetChipTemperature => 242,
DmxBrickletFunction::Reset => 243,
DmxBrickletFunction::WriteUid => 248,
DmxBrickletFunction::ReadUid => 249,
DmxBrickletFunction::GetIdentity => 255,
DmxBrickletFunction::CallbackFrameStarted => 14,
DmxBrickletFunction::CallbackFrameAvailable => 15,
DmxBrickletFunction::CallbackFrameLowLevel => 16,
DmxBrickletFunction::CallbackFrameErrorCount => 17,
}
}
}
pub const DMX_BRICKLET_DMX_MODE_MASTER: u8 = 0;
pub const DMX_BRICKLET_DMX_MODE_SLAVE: u8 = 1;
pub const DMX_BRICKLET_COMMUNICATION_LED_CONFIG_OFF: u8 = 0;
pub const DMX_BRICKLET_COMMUNICATION_LED_CONFIG_ON: u8 = 1;
pub const DMX_BRICKLET_COMMUNICATION_LED_CONFIG_SHOW_HEARTBEAT: u8 = 2;
pub const DMX_BRICKLET_COMMUNICATION_LED_CONFIG_SHOW_COMMUNICATION: u8 = 3;
pub const DMX_BRICKLET_ERROR_LED_CONFIG_OFF: u8 = 0;
pub const DMX_BRICKLET_ERROR_LED_CONFIG_ON: u8 = 1;
pub const DMX_BRICKLET_ERROR_LED_CONFIG_SHOW_HEARTBEAT: u8 = 2;
pub const DMX_BRICKLET_ERROR_LED_CONFIG_SHOW_ERROR: u8 = 3;
pub const DMX_BRICKLET_BOOTLOADER_MODE_BOOTLOADER: u8 = 0;
pub const DMX_BRICKLET_BOOTLOADER_MODE_FIRMWARE: u8 = 1;
pub const DMX_BRICKLET_BOOTLOADER_MODE_BOOTLOADER_WAIT_FOR_REBOOT: u8 = 2;
pub const DMX_BRICKLET_BOOTLOADER_MODE_FIRMWARE_WAIT_FOR_REBOOT: u8 = 3;
pub const DMX_BRICKLET_BOOTLOADER_MODE_FIRMWARE_WAIT_FOR_ERASE_AND_REBOOT: u8 = 4;
pub const DMX_BRICKLET_BOOTLOADER_STATUS_OK: u8 = 0;
pub const DMX_BRICKLET_BOOTLOADER_STATUS_INVALID_MODE: u8 = 1;
pub const DMX_BRICKLET_BOOTLOADER_STATUS_NO_CHANGE: u8 = 2;
pub const DMX_BRICKLET_BOOTLOADER_STATUS_ENTRY_FUNCTION_NOT_PRESENT: u8 = 3;
pub const DMX_BRICKLET_BOOTLOADER_STATUS_DEVICE_IDENTIFIER_INCORRECT: u8 = 4;
pub const DMX_BRICKLET_BOOTLOADER_STATUS_CRC_MISMATCH: u8 = 5;
pub const DMX_BRICKLET_STATUS_LED_CONFIG_OFF: u8 = 0;
pub const DMX_BRICKLET_STATUS_LED_CONFIG_ON: u8 = 1;
pub const DMX_BRICKLET_STATUS_LED_CONFIG_SHOW_HEARTBEAT: u8 = 2;
pub const DMX_BRICKLET_STATUS_LED_CONFIG_SHOW_STATUS: u8 = 3;
#[derive(Clone, Copy, Debug, Default, PartialEq, Eq, Hash)]
pub struct WriteFrameLowLevel {}
impl FromByteSlice for WriteFrameLowLevel {
fn bytes_expected() -> usize {
0
}
fn from_le_byte_slice(_bytes: &[u8]) -> WriteFrameLowLevel {
WriteFrameLowLevel {}
}
}
#[derive(Clone, Copy)]
pub struct ReadFrameLowLevel {
pub frame_length: u16,
pub frame_chunk_offset: u16,
pub frame_chunk_data: [u8; 56],
pub frame_number: u32,
}
impl FromByteSlice for ReadFrameLowLevel {
fn bytes_expected() -> usize {
64
}
fn from_le_byte_slice(bytes: &[u8]) -> ReadFrameLowLevel {
ReadFrameLowLevel {
frame_length: <u16>::from_le_byte_slice(&bytes[0..2]),
frame_chunk_offset: <u16>::from_le_byte_slice(&bytes[2..4]),
frame_chunk_data: <[u8; 56]>::from_le_byte_slice(&bytes[4..60]),
frame_number: <u32>::from_le_byte_slice(&bytes[60..64]),
}
}
}
impl LowLevelRead<u8, ReadFrameResult> for ReadFrameLowLevel {
fn ll_message_length(&self) -> usize {
self.frame_length as usize
}
fn ll_message_chunk_offset(&self) -> usize {
self.frame_chunk_offset as usize
}
fn ll_message_chunk_data(&self) -> &[u8] {
&self.frame_chunk_data
}
fn get_result(&self) -> ReadFrameResult {
ReadFrameResult { frame_number: self.frame_number }
}
}
#[derive(Clone, Copy, Debug, Default, PartialEq, Eq, Hash)]
pub struct FrameErrorCount {
pub overrun_error_count: u32,
pub framing_error_count: u32,
}
impl FromByteSlice for FrameErrorCount {
fn bytes_expected() -> usize {
8
}
fn from_le_byte_slice(bytes: &[u8]) -> FrameErrorCount {
FrameErrorCount {
overrun_error_count: <u32>::from_le_byte_slice(&bytes[0..4]),
framing_error_count: <u32>::from_le_byte_slice(&bytes[4..8]),
}
}
}
#[derive(Clone, Copy, Debug, Default, PartialEq, Eq, Hash)]
pub struct FrameCallbackConfig {
pub frame_started_callback_enabled: bool,
pub frame_available_callback_enabled: bool,
pub frame_callback_enabled: bool,
pub frame_error_count_callback_enabled: bool,
}
impl FromByteSlice for FrameCallbackConfig {
fn bytes_expected() -> usize {
4
}
fn from_le_byte_slice(bytes: &[u8]) -> FrameCallbackConfig {
FrameCallbackConfig {
frame_started_callback_enabled: <bool>::from_le_byte_slice(&bytes[0..1]),
frame_available_callback_enabled: <bool>::from_le_byte_slice(&bytes[1..2]),
frame_callback_enabled: <bool>::from_le_byte_slice(&bytes[2..3]),
frame_error_count_callback_enabled: <bool>::from_le_byte_slice(&bytes[3..4]),
}
}
}
#[derive(Clone, Copy)]
pub struct FrameLowLevelEvent {
pub frame_length: u16,
pub frame_chunk_offset: u16,
pub frame_chunk_data: [u8; 56],
pub frame_number: u32,
}
impl FromByteSlice for FrameLowLevelEvent {
fn bytes_expected() -> usize {
64
}
fn from_le_byte_slice(bytes: &[u8]) -> FrameLowLevelEvent {
FrameLowLevelEvent {
frame_length: <u16>::from_le_byte_slice(&bytes[0..2]),
frame_chunk_offset: <u16>::from_le_byte_slice(&bytes[2..4]),
frame_chunk_data: <[u8; 56]>::from_le_byte_slice(&bytes[4..60]),
frame_number: <u32>::from_le_byte_slice(&bytes[60..64]),
}
}
}
impl LowLevelRead<u8, FrameResult> for FrameLowLevelEvent {
fn ll_message_length(&self) -> usize {
self.frame_length as usize
}
fn ll_message_chunk_offset(&self) -> usize {
self.frame_chunk_offset as usize
}
fn ll_message_chunk_data(&self) -> &[u8] {
&self.frame_chunk_data
}
fn get_result(&self) -> FrameResult {
FrameResult { frame_number: self.frame_number }
}
}
#[derive(Clone, Copy, Debug, Default, PartialEq, Eq, Hash)]
pub struct FrameErrorCountEvent {
pub overrun_error_count: u32,
pub framing_error_count: u32,
}
impl FromByteSlice for FrameErrorCountEvent {
fn bytes_expected() -> usize {
8
}
fn from_le_byte_slice(bytes: &[u8]) -> FrameErrorCountEvent {
FrameErrorCountEvent {
overrun_error_count: <u32>::from_le_byte_slice(&bytes[0..4]),
framing_error_count: <u32>::from_le_byte_slice(&bytes[4..8]),
}
}
}
#[derive(Clone, Copy, Debug, Default, PartialEq, Eq, Hash)]
pub struct SpitfpErrorCount {
pub error_count_ack_checksum: u32,
pub error_count_message_checksum: u32,
pub error_count_frame: u32,
pub error_count_overflow: u32,
}
impl FromByteSlice for SpitfpErrorCount {
fn bytes_expected() -> usize {
16
}
fn from_le_byte_slice(bytes: &[u8]) -> SpitfpErrorCount {
SpitfpErrorCount {
error_count_ack_checksum: <u32>::from_le_byte_slice(&bytes[0..4]),
error_count_message_checksum: <u32>::from_le_byte_slice(&bytes[4..8]),
error_count_frame: <u32>::from_le_byte_slice(&bytes[8..12]),
error_count_overflow: <u32>::from_le_byte_slice(&bytes[12..16]),
}
}
}
#[derive(Clone, Debug, Default, PartialEq, Eq, Hash)]
pub struct Identity {
pub uid: String,
pub connected_uid: String,
pub position: char,
pub hardware_version: [u8; 3],
pub firmware_version: [u8; 3],
pub device_identifier: u16,
}
impl FromByteSlice for Identity {
fn bytes_expected() -> usize {
25
}
fn from_le_byte_slice(bytes: &[u8]) -> Identity {
Identity {
uid: <String>::from_le_byte_slice(&bytes[0..8]),
connected_uid: <String>::from_le_byte_slice(&bytes[8..16]),
position: <char>::from_le_byte_slice(&bytes[16..17]),
hardware_version: <[u8; 3]>::from_le_byte_slice(&bytes[17..20]),
firmware_version: <[u8; 3]>::from_le_byte_slice(&bytes[20..23]),
device_identifier: <u16>::from_le_byte_slice(&bytes[23..25]),
}
}
}
#[derive(Clone, Copy, Debug, Default, PartialEq, Eq, Hash)]
pub struct WriteFrameResult {}
#[derive(Clone, Copy, Debug, Default, PartialEq, Eq, Hash)]
pub struct ReadFrameResult {
pub frame_number: u32,
}
#[derive(Clone, Copy, Debug, Default, PartialEq, Eq, Hash)]
pub struct FrameResult {
pub frame_number: u32,
}
#[derive(Clone)]
pub struct DmxBricklet {
device: Device,
}
impl DmxBricklet {
pub const DEVICE_IDENTIFIER: u16 = 285;
pub const DEVICE_DISPLAY_NAME: &'static str = "DMX Bricklet";
pub fn new(uid: u32, connection: AsyncIpConnection) -> DmxBricklet {
let mut result = DmxBricklet { device: Device::new([2, 0, 10], uid, connection, Self::DEVICE_DISPLAY_NAME) };
result.device.response_expected[u8::from(DmxBrickletFunction::SetDmxMode) as usize] = ResponseExpectedFlag::False;
result.device.response_expected[u8::from(DmxBrickletFunction::GetDmxMode) as usize] = ResponseExpectedFlag::AlwaysTrue;
result.device.response_expected[u8::from(DmxBrickletFunction::WriteFrameLowLevel) as usize] = ResponseExpectedFlag::True;
result.device.response_expected[u8::from(DmxBrickletFunction::ReadFrameLowLevel) as usize] = ResponseExpectedFlag::AlwaysTrue;
result.device.response_expected[u8::from(DmxBrickletFunction::SetFrameDuration) as usize] = ResponseExpectedFlag::False;
result.device.response_expected[u8::from(DmxBrickletFunction::GetFrameDuration) as usize] = ResponseExpectedFlag::AlwaysTrue;
result.device.response_expected[u8::from(DmxBrickletFunction::GetFrameErrorCount) as usize] = ResponseExpectedFlag::AlwaysTrue;
result.device.response_expected[u8::from(DmxBrickletFunction::SetCommunicationLedConfig) as usize] = ResponseExpectedFlag::False;
result.device.response_expected[u8::from(DmxBrickletFunction::GetCommunicationLedConfig) as usize] =
ResponseExpectedFlag::AlwaysTrue;
result.device.response_expected[u8::from(DmxBrickletFunction::SetErrorLedConfig) as usize] = ResponseExpectedFlag::False;
result.device.response_expected[u8::from(DmxBrickletFunction::GetErrorLedConfig) as usize] = ResponseExpectedFlag::AlwaysTrue;
result.device.response_expected[u8::from(DmxBrickletFunction::SetFrameCallbackConfig) as usize] = ResponseExpectedFlag::True;
result.device.response_expected[u8::from(DmxBrickletFunction::GetFrameCallbackConfig) as usize] = ResponseExpectedFlag::AlwaysTrue;
result.device.response_expected[u8::from(DmxBrickletFunction::GetSpitfpErrorCount) as usize] = ResponseExpectedFlag::AlwaysTrue;
result.device.response_expected[u8::from(DmxBrickletFunction::SetBootloaderMode) as usize] = ResponseExpectedFlag::AlwaysTrue;
result.device.response_expected[u8::from(DmxBrickletFunction::GetBootloaderMode) as usize] = ResponseExpectedFlag::AlwaysTrue;
result.device.response_expected[u8::from(DmxBrickletFunction::SetWriteFirmwarePointer) as usize] = ResponseExpectedFlag::False;
result.device.response_expected[u8::from(DmxBrickletFunction::WriteFirmware) as usize] = ResponseExpectedFlag::AlwaysTrue;
result.device.response_expected[u8::from(DmxBrickletFunction::SetStatusLedConfig) as usize] = ResponseExpectedFlag::False;
result.device.response_expected[u8::from(DmxBrickletFunction::GetStatusLedConfig) as usize] = ResponseExpectedFlag::AlwaysTrue;
result.device.response_expected[u8::from(DmxBrickletFunction::GetChipTemperature) as usize] = ResponseExpectedFlag::AlwaysTrue;
result.device.response_expected[u8::from(DmxBrickletFunction::Reset) as usize] = ResponseExpectedFlag::False;
result.device.response_expected[u8::from(DmxBrickletFunction::WriteUid) as usize] = ResponseExpectedFlag::False;
result.device.response_expected[u8::from(DmxBrickletFunction::ReadUid) as usize] = ResponseExpectedFlag::AlwaysTrue;
result.device.response_expected[u8::from(DmxBrickletFunction::GetIdentity) as usize] = ResponseExpectedFlag::AlwaysTrue;
result
}
pub fn get_response_expected(&mut self, fun: DmxBrickletFunction) -> Result<bool, GetResponseExpectedError> {
self.device.get_response_expected(u8::from(fun))
}
pub fn set_response_expected(&mut self, fun: DmxBrickletFunction, response_expected: bool) -> Result<(), SetResponseExpectedError> {
self.device.set_response_expected(u8::from(fun), response_expected)
}
pub fn set_response_expected_all(&mut self, response_expected: bool) {
self.device.set_response_expected_all(response_expected)
}
pub fn get_api_version(&self) -> [u8; 3] {
self.device.api_version
}
pub async fn get_frame_started_callback_receiver(&mut self) -> impl Stream<Item = ()> {
self.device.get_callback_receiver(u8::from(DmxBrickletFunction::CallbackFrameStarted)).await.map(|_p| ())
}
pub async fn get_frame_available_callback_receiver(&mut self) -> impl Stream<Item = u32> {
self.device
.get_callback_receiver(u8::from(DmxBrickletFunction::CallbackFrameAvailable))
.await
.map(|p| u32::from_le_byte_slice(p.body()))
}
pub async fn get_frame_low_level_callback_receiver(&mut self) -> impl Stream<Item = FrameLowLevelEvent> {
self.device
.get_callback_receiver(u8::from(DmxBrickletFunction::CallbackFrameLowLevel))
.await
.map(|p| FrameLowLevelEvent::from_le_byte_slice(p.body()))
}
pub async fn get_frame_error_count_callback_receiver(&mut self) -> impl Stream<Item = FrameErrorCountEvent> {
self.device
.get_callback_receiver(u8::from(DmxBrickletFunction::CallbackFrameErrorCount))
.await
.map(|p| FrameErrorCountEvent::from_le_byte_slice(p.body()))
}
pub async fn set_dmx_mode(&mut self, dmx_mode: u8) -> Result<(), TinkerforgeError> {
let mut payload = [0; 1];
dmx_mode.write_to_slice(&mut payload[0..1]);
#[allow(unused_variables)]
let result = self.device.set(u8::from(DmxBrickletFunction::SetDmxMode), &payload).await?;
Ok(())
}
pub async fn get_dmx_mode(&mut self) -> Result<u8, TinkerforgeError> {
let payload = [0; 0];
#[allow(unused_variables)]
let result = self.device.get(u8::from(DmxBrickletFunction::GetDmxMode), &payload).await?;
Ok(u8::from_le_byte_slice(result.body()))
}
pub async fn write_frame_low_level(
&mut self,
frame_length: u16,
frame_chunk_offset: u16,
frame_chunk_data: &[u8; 60],
) -> Result<WriteFrameLowLevel, TinkerforgeError> {
let mut payload = [0; 64];
frame_length.write_to_slice(&mut payload[0..2]);
frame_chunk_offset.write_to_slice(&mut payload[2..4]);
frame_chunk_data.write_to_slice(&mut payload[4..64]);
#[allow(unused_variables)]
let result = self.device.set(u8::from(DmxBrickletFunction::WriteFrameLowLevel), &payload).await?.unwrap();
Ok(WriteFrameLowLevel::from_le_byte_slice(result.body()))
}
pub async fn read_frame_low_level(&mut self) -> Result<ReadFrameLowLevel, TinkerforgeError> {
let payload = [0; 0];
#[allow(unused_variables)]
let result = self.device.get(u8::from(DmxBrickletFunction::ReadFrameLowLevel), &payload).await?;
Ok(ReadFrameLowLevel::from_le_byte_slice(result.body()))
}
pub async fn set_frame_duration(&mut self, frame_duration: u16) -> Result<(), TinkerforgeError> {
let mut payload = [0; 2];
frame_duration.write_to_slice(&mut payload[0..2]);
#[allow(unused_variables)]
let result = self.device.set(u8::from(DmxBrickletFunction::SetFrameDuration), &payload).await?;
Ok(())
}
pub async fn get_frame_duration(&mut self) -> Result<u16, TinkerforgeError> {
let payload = [0; 0];
#[allow(unused_variables)]
let result = self.device.get(u8::from(DmxBrickletFunction::GetFrameDuration), &payload).await?;
Ok(u16::from_le_byte_slice(result.body()))
}
pub async fn get_frame_error_count(&mut self) -> Result<FrameErrorCount, TinkerforgeError> {
let payload = [0; 0];
#[allow(unused_variables)]
let result = self.device.get(u8::from(DmxBrickletFunction::GetFrameErrorCount), &payload).await?;
Ok(FrameErrorCount::from_le_byte_slice(result.body()))
}
pub async fn set_communication_led_config(&mut self, config: u8) -> Result<(), TinkerforgeError> {
let mut payload = [0; 1];
config.write_to_slice(&mut payload[0..1]);
#[allow(unused_variables)]
let result = self.device.set(u8::from(DmxBrickletFunction::SetCommunicationLedConfig), &payload).await?;
Ok(())
}
pub async fn get_communication_led_config(&mut self) -> Result<u8, TinkerforgeError> {
let payload = [0; 0];
#[allow(unused_variables)]
let result = self.device.get(u8::from(DmxBrickletFunction::GetCommunicationLedConfig), &payload).await?;
Ok(u8::from_le_byte_slice(result.body()))
}
pub async fn set_error_led_config(&mut self, config: u8) -> Result<(), TinkerforgeError> {
let mut payload = [0; 1];
config.write_to_slice(&mut payload[0..1]);
#[allow(unused_variables)]
let result = self.device.set(u8::from(DmxBrickletFunction::SetErrorLedConfig), &payload).await?;
Ok(())
}
pub async fn get_error_led_config(&mut self) -> Result<u8, TinkerforgeError> {
let payload = [0; 0];
#[allow(unused_variables)]
let result = self.device.get(u8::from(DmxBrickletFunction::GetErrorLedConfig), &payload).await?;
Ok(u8::from_le_byte_slice(result.body()))
}
pub async fn set_frame_callback_config(
&mut self,
frame_started_callback_enabled: bool,
frame_available_callback_enabled: bool,
frame_callback_enabled: bool,
frame_error_count_callback_enabled: bool,
) -> Result<(), TinkerforgeError> {
let mut payload = [0; 4];
frame_started_callback_enabled.write_to_slice(&mut payload[0..1]);
frame_available_callback_enabled.write_to_slice(&mut payload[1..2]);
frame_callback_enabled.write_to_slice(&mut payload[2..3]);
frame_error_count_callback_enabled.write_to_slice(&mut payload[3..4]);
#[allow(unused_variables)]
let result = self.device.set(u8::from(DmxBrickletFunction::SetFrameCallbackConfig), &payload).await?;
Ok(())
}
pub async fn get_frame_callback_config(&mut self) -> Result<FrameCallbackConfig, TinkerforgeError> {
let payload = [0; 0];
#[allow(unused_variables)]
let result = self.device.get(u8::from(DmxBrickletFunction::GetFrameCallbackConfig), &payload).await?;
Ok(FrameCallbackConfig::from_le_byte_slice(result.body()))
}
pub async fn get_spitfp_error_count(&mut self) -> Result<SpitfpErrorCount, TinkerforgeError> {
let payload = [0; 0];
#[allow(unused_variables)]
let result = self.device.get(u8::from(DmxBrickletFunction::GetSpitfpErrorCount), &payload).await?;
Ok(SpitfpErrorCount::from_le_byte_slice(result.body()))
}
pub async fn set_bootloader_mode(&mut self, mode: u8) -> Result<u8, TinkerforgeError> {
let mut payload = [0; 1];
mode.write_to_slice(&mut payload[0..1]);
#[allow(unused_variables)]
let result = self.device.get(u8::from(DmxBrickletFunction::SetBootloaderMode), &payload).await?;
Ok(u8::from_le_byte_slice(result.body()))
}
pub async fn get_bootloader_mode(&mut self) -> Result<u8, TinkerforgeError> {
let payload = [0; 0];
#[allow(unused_variables)]
let result = self.device.get(u8::from(DmxBrickletFunction::GetBootloaderMode), &payload).await?;
Ok(u8::from_le_byte_slice(result.body()))
}
pub async fn set_write_firmware_pointer(&mut self, pointer: u32) -> Result<(), TinkerforgeError> {
let mut payload = [0; 4];
pointer.write_to_slice(&mut payload[0..4]);
#[allow(unused_variables)]
let result = self.device.set(u8::from(DmxBrickletFunction::SetWriteFirmwarePointer), &payload).await?;
Ok(())
}
pub async fn write_firmware(&mut self, data: &[u8; 64]) -> Result<u8, TinkerforgeError> {
let mut payload = [0; 64];
data.write_to_slice(&mut payload[0..64]);
#[allow(unused_variables)]
let result = self.device.get(u8::from(DmxBrickletFunction::WriteFirmware), &payload).await?;
Ok(u8::from_le_byte_slice(result.body()))
}
pub async fn set_status_led_config(&mut self, config: u8) -> Result<(), TinkerforgeError> {
let mut payload = [0; 1];
config.write_to_slice(&mut payload[0..1]);
#[allow(unused_variables)]
let result = self.device.set(u8::from(DmxBrickletFunction::SetStatusLedConfig), &payload).await?;
Ok(())
}
pub async fn get_status_led_config(&mut self) -> Result<u8, TinkerforgeError> {
let payload = [0; 0];
#[allow(unused_variables)]
let result = self.device.get(u8::from(DmxBrickletFunction::GetStatusLedConfig), &payload).await?;
Ok(u8::from_le_byte_slice(result.body()))
}
pub async fn get_chip_temperature(&mut self) -> Result<i16, TinkerforgeError> {
let payload = [0; 0];
#[allow(unused_variables)]
let result = self.device.get(u8::from(DmxBrickletFunction::GetChipTemperature), &payload).await?;
Ok(i16::from_le_byte_slice(result.body()))
}
pub async fn reset(&mut self) -> Result<(), TinkerforgeError> {
let payload = [0; 0];
#[allow(unused_variables)]
let result = self.device.set(u8::from(DmxBrickletFunction::Reset), &payload).await?;
Ok(())
}
pub async fn write_uid(&mut self, uid: u32) -> Result<(), TinkerforgeError> {
let mut payload = [0; 4];
uid.write_to_slice(&mut payload[0..4]);
#[allow(unused_variables)]
let result = self.device.set(u8::from(DmxBrickletFunction::WriteUid), &payload).await?;
Ok(())
}
pub async fn read_uid(&mut self) -> Result<u32, TinkerforgeError> {
let payload = [0; 0];
#[allow(unused_variables)]
let result = self.device.get(u8::from(DmxBrickletFunction::ReadUid), &payload).await?;
Ok(u32::from_le_byte_slice(result.body()))
}
pub async fn get_identity(&mut self) -> Result<Identity, TinkerforgeError> {
let payload = [0; 0];
#[allow(unused_variables)]
let result = self.device.get(u8::from(DmxBrickletFunction::GetIdentity), &payload).await?;
Ok(Identity::from_le_byte_slice(result.body()))
}
}