removes charge tune

This commit is contained in:
Keagan McClelland
2022-02-10 12:03:27 -07:00
parent 1fa524dfed
commit 1d8512e1dd
2 changed files with 1 additions and 11 deletions

View File

@@ -219,7 +219,7 @@ async fn inner_main(cfg_path: Option<&str>) -> Result<Option<Shutdown>, Error> {
rpc_ctx.shutdown.subscribe(),
);
embassy::sound::CHARGE.play().await?;
embassy::sound::CHIME.play().await?;
futures::try_join!(
server

View File

@@ -347,16 +347,6 @@ pub const CHIME: Song<[(Option<Note>, TimeSlice); 2]> = song!(400, [
note(E, 6, Tie(&Dot(&Quarter), &Half));
]);
pub const CHARGE: Song<[(Option<Note>, TimeSlice); 7]> = song!(128, [
note(G, 4, Triplet(&Eighth));
note(C, 5, Triplet(&Eighth));
note(E, 5, Triplet(&Eighth));
note(G, 5, Triplet(&Eighth));
rest(Triplet(&Eighth));
note(E, 5, Triplet(&Eighth));
note(G, 5, Half);
]);
pub const SHUTDOWN: Song<[(Option<Note>, TimeSlice); 12]> = song!(120, [
note(C, 5, Eighth);
rest(Eighth);