diff options
author | 2020-10-15 14:15:35 +0000 | |
---|---|---|
committer | 2020-10-15 14:15:35 +0000 | |
commit | ee0885063d5b1cc4eddd3918ff425796f6213464 (patch) | |
tree | 7073205b076f168b1c6f5782a278abf11eb7746f /macros/src/codegen.rs | |
parent | 1db5faad62c89cff19d2a94c8ce7b98bac9439ac (diff) | |
parent | 48abc26e8577e6b57c46dce40e63022fac2c9375 (diff) | |
download | rtic-ee0885063d5b1cc4eddd3918ff425796f6213464.tar.gz rtic-ee0885063d5b1cc4eddd3918ff425796f6213464.tar.zst rtic-ee0885063d5b1cc4eddd3918ff425796f6213464.zip |
Merge #394
394: Detect if the rt flag is defined in the PAC/HAL r=AfoHT a=korken89
This stops RTIC applications from compiling if one has forgotten to set the `rt` flag in the PAC/HAL.
The error:
```
error[E0433]: failed to resolve: could not find `interrupt` in `you_must_enable_the_rt_feature_for_the_pac_in_your_cargo_toml`
--> src/main.rs:8:1
|
8 | #[rtic::app(device = stm32l4xx_hal::pac)]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ could not find `interrupt` in `you_must_enable_the_rt_feature_for_the_pac_in_your_cargo_toml`
|
= note: this error originates in an attribute macro (in Nightly builds, run with -Z macro-backtrace for more info)
```
Co-authored-by: Emil Fresk <emil.fresk@gmail.com>
Diffstat (limited to 'macros/src/codegen.rs')
-rw-r--r-- | macros/src/codegen.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/macros/src/codegen.rs b/macros/src/codegen.rs index f230d395..e89776c5 100644 --- a/macros/src/codegen.rs +++ b/macros/src/codegen.rs @@ -144,7 +144,7 @@ pub fn app(app: &App, analysis: &Analysis, extra: &Extra) -> TokenStream2 { /// Implementation details mod #name { /// Always include the device crate which contains the vector table - use #device as _; + use #device as you_must_enable_the_rt_feature_for_the_pac_in_your_cargo_toml; #(#imports)* #(#user_imports)* |