Macro warning

Source
warning!() { /* proc-macro */ }
Expand description

Print a build warning.

It should be noted that the warning will be printed BEFORE the main function is called, and as such this should NOT be thought analogous to println! or similar utilities.

§Example

esp_build::warning! {"
WARNING: something unpleasant has happened!
"};