1use crate::prelude_internal::*;
6
7pub trait Radio {
11 fn get_coex_metrics(&self) -> Result<RadioCoexMetrics>;
14
15 fn get_rssi(&self) -> Decibels;
18
19 fn get_region(&self) -> Result<RadioRegion>;
22
23 fn set_region(&self, region: RadioRegion) -> Result;
26
27 fn get_transmit_power(&self) -> Result<Decibels>;
30
31 fn radio_get_version_string(&self) -> &str;
34}
35
36impl<T: Radio + Boxable> Radio for ot::Box<T> {
37 fn get_coex_metrics(&self) -> Result<RadioCoexMetrics> {
38 self.as_ref().get_coex_metrics()
39 }
40
41 fn get_rssi(&self) -> Decibels {
42 self.as_ref().get_rssi()
43 }
44
45 fn get_region(&self) -> Result<RadioRegion> {
46 self.as_ref().get_region()
47 }
48
49 fn set_region(&self, region: RadioRegion) -> Result {
50 self.as_ref().set_region(region)
51 }
52
53 fn get_transmit_power(&self) -> Result<Decibels> {
54 self.as_ref().get_transmit_power()
55 }
56
57 fn radio_get_version_string(&self) -> &str {
58 self.as_ref().radio_get_version_string()
59 }
60}
61
62impl Radio for Instance {
63 fn get_coex_metrics(&self) -> Result<RadioCoexMetrics> {
64 let mut ret = RadioCoexMetrics::default();
65 Error::from(unsafe { otPlatRadioGetCoexMetrics(self.as_ot_ptr(), ret.as_ot_mut_ptr()) })
66 .into_result()?;
67 Ok(ret)
68 }
69
70 fn get_rssi(&self) -> Decibels {
71 unsafe { otPlatRadioGetRssi(self.as_ot_ptr()) }
72 }
73
74 fn get_region(&self) -> Result<RadioRegion> {
75 let mut ret = 0u16;
76 Error::from(unsafe { otPlatRadioGetRegion(self.as_ot_ptr(), &mut ret as *mut u16) })
77 .into_result()?;
78 Ok(ret.into())
79 }
80
81 fn set_region(&self, region: RadioRegion) -> Result {
82 Error::from(unsafe { otPlatRadioSetRegion(self.as_ot_ptr(), region.into()) }).into()
83 }
84
85 fn get_transmit_power(&self) -> Result<Decibels> {
86 let mut ret = DECIBELS_UNSPECIFIED;
87 Error::from(unsafe {
88 otPlatRadioGetTransmitPower(self.as_ot_ptr(), &mut ret as *mut Decibels)
89 })
90 .into_result()?;
91 Ok(ret)
92 }
93
94 fn radio_get_version_string(&self) -> &str {
95 unsafe {
96 CStr::from_ptr(otPlatRadioGetVersionString(self.as_ot_ptr()))
99 .to_str()
100 .expect("OpenThread version string was bad UTF8")
101 }
102 }
103}