We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b8feb5 commit 7e2ef5fCopy full SHA for 7e2ef5f
1 file changed
controlSystem/RecoveryBoard/firmware-rs/src/bin/parachute.rs
@@ -271,13 +271,13 @@ async fn main(spawner: Spawner) {
271
}
272
273
ChuteCmd::U { force, pulse } => {
274
- if state.ready {
+ if !state.shore_power_on {
275
if async_cmd_sender.try_send(AsyncCmd::U { force, pulse }).is_err() {
276
error!("unable to send unlock commmand to async handler");
277
};
278
} else {
279
let _ =
280
- uwrite!(cli.writer(), "unable to unlock ring - not ready");
+ uwrite!(cli.writer(), "unable to unlock ring - shore power is on");
281
282
283
ChuteCmd::Pos => {
0 commit comments