fix unused variable warnings in daisy seed examples
This commit is contained in:
parent
7354f40a14
commit
f3911765f5
@ -96,4 +96,8 @@ int main() {
|
|||||||
hardware.PrintLine("Min: " FLT_FMT3, FLT_VAR3(minLoad * 100.0f));
|
hardware.PrintLine("Min: " FLT_FMT3, FLT_VAR3(minLoad * 100.0f));
|
||||||
System::Delay(500);
|
System::Delay(500);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// silence unused variable warnings
|
||||||
|
(void)config_buses_in;
|
||||||
|
(void)config_buses_out;
|
||||||
}
|
}
|
||||||
|
@ -137,4 +137,7 @@ int main() {
|
|||||||
System::Delay(1);
|
System::Delay(1);
|
||||||
*/
|
*/
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// silence unused variable warnings
|
||||||
|
(void)config_buses_out;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user