cyw43: Fix warning in event.rs.

Allow non_upper_case_globals, to prevent the compiler from spitting out a warning about the Event enum.
This commit is contained in:
Frostie314159 2023-08-28 21:02:38 +02:00
parent 0568738f77
commit 4098a61ef0
No known key found for this signature in database
GPG key ID: 0C2C22C244C8223F

View file

@ -1,5 +1,5 @@
#![allow(dead_code)]
#![allow(non_camel_case_types)]
#![allow(non_camel_case_types, non_upper_case_globals)]
use core::cell::RefCell;