Update to pdl 0.3.0

Test: m
Change-Id: I78df5c5ee828d418023128ef57428aa6be67ec3a
This commit is contained in:
David Duarte 2024-05-31 17:32:20 +00:00
parent 56e050362d
commit f8a70bbcbc

View file

@ -71,7 +71,7 @@ impl State {
let packet_vec: Vec<UciControlPacketHal> = packet.into();
for hal_packet in packet_vec.into_iter() {
serial
.write(&hal_packet.to_vec())
.write(&hal_packet.encode_to_vec().unwrap())
.map(|written| written as i32)
.map_err(|_| binder::StatusCode::UNKNOWN_ERROR)?;
}