Tasmota/pio-tools/add_c_flags_ard3.py
Jason2866 34fba6e21e
Fix audio warning with Arduino core 3 (#20000)
* silence warning Core 3

* Update add_c_flags_ard3.py

* Update library.json
2023-11-12 23:55:50 +01:00

8 lines
235 B
Python

Import("env")
# General options that are passed to the C++ compiler
env.Append(CXXFLAGS=["-Wno-volatile"])
# General options that are passed to the C compiler (C only; not C++).
env.Append(CFLAGS=["-Wno-incompatible-pointer-types"])