From d73d5126ddfa74bf163be5639530902a41a74efa Mon Sep 17 00:00:00 2001 From: finga Date: Fri, 8 Apr 2022 01:42:36 +0200 Subject: [PATCH] fw-rust: Add missing stabilization comments --- firmware/rust/src/assets.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/firmware/rust/src/assets.rs b/firmware/rust/src/assets.rs index 3874534..ceb0492 100644 --- a/firmware/rust/src/assets.rs +++ b/firmware/rust/src/assets.rs @@ -48,12 +48,15 @@ pub const ON: [u8; 11] = [ 0x00, 0x7E, 0x66, 0x7E, 0x00, 0x7E, 0x0C, 0x18, 0x30, 0x7E, 0x00, ]; +// TODO: Use https://github.com/rust-lang/rust/issues/85077 when stabilized pub const OFF: [u8; 11] = [ 0x7E, 0x66, 0x7E, 0x00, 0x7E, 0x16, 0x16, 0x00, 0x7E, 0x16, 0x16, ]; +// TODO: Use https://github.com/rust-lang/rust/issues/85077 when stabilized pub const PLL_A: [u8; 6] = [0x00, 0x7C, 0x12, 0x12, 0x7C, 0x00]; +// TODO: Use https://github.com/rust-lang/rust/issues/85077 when stabilized pub const PLL_B: [u8; 6] = [0x00, 0x7E, 0x4A, 0x4A, 0x74, 0x00]; // TODO: Use https://github.com/rust-lang/rust/issues/85077 when stabilized