The following settings do not change the behaviour of the transceiver.\r\n\
Instead, they only change the contents of the NodeInfo whisker.\r\n\
Info configuration:\r\n\
antenna_height {antenna_height:.1} (meters)\r\n\
antenna_gain {antenna_gain:.1} (dBi)\r\n\
tx_power {tx_power} (dBm)\r\n\
\r\n\
To change a setting, type `set <property> <value>`\r\n\
To change a setting, type `set <property> <value>`\r\n\
For example, `set transmit_period 300`\r\n"
For example, `set transmit_period 300`\r\n"
)
)
...
@@ -179,6 +189,27 @@ impl Shell {
...
@@ -179,6 +189,27 @@ impl Shell {
}
}
Err(e)=>Err(e),
Err(e)=>Err(e),
},
},
"antenna_height"=>matchparse_maybe_u8(value){
Ok(v)=>{
self.config.antenna_height=v;
Ok(())
}
Err(e)=>Err(e),
},
"antenna_gain"=>matchparse_maybe_f32(value){
Ok(v)=>{
self.config.antenna_gain=v;
Ok(())
}
Err(e)=>Err(e),
},
"tx_power"=>matchparse_maybe_f32(value){
Ok(v)=>{
self.config.tx_power=v;
Ok(())
}
Err(e)=>Err(e),
},
""=>{
""=>{
write!(ushell,"\r\nUsage: set <property> <value>\r\n").ok();
write!(ushell,"\r\nUsage: set <property> <value>\r\n").ok();
break'inner;
break'inner;
...
@@ -225,12 +256,19 @@ impl Shell {
...
@@ -225,12 +256,19 @@ impl Shell {
icon:0,
icon:0,
ssid:255,
ssid:255,
max_hops:0,
max_hops:0,
comment:ArrayString::from("Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibu").unwrap(),
comment:ArrayString::from("Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. \
Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. \
Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. \
Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, \