diff options
| author | Oleksandr Babak <alexanderbabak@proton.me> | 2025-05-15 18:28:49 +0200 |
|---|---|---|
| committer | Emil Fresk <emil.fresk@gmail.com> | 2025-06-18 18:49:41 +0000 |
| commit | 8d7b85c8368b5ad1c95f3e06e2c2c1529bcc3484 (patch) | |
| tree | 817ea8ab68d1611705e943263ff96036958d0eb7 | |
| parent | b2764f57607d0dd24dc69f498dc2c7af0a097a9f (diff) | |
fix: add a single error
| -rw-r--r-- | rtic/ui/custom_section.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/rtic/ui/custom_section.rs b/rtic/ui/custom_section.rs index 308654f..cb1b81f 100644 --- a/rtic/ui/custom_section.rs +++ b/rtic/ui/custom_section.rs @@ -1,5 +1,7 @@ #![no_main] +compile_error!("This should be the only error in the file"); + #[rtic::app(device = lm3s6965)] mod app { #[shared] |
