logicanalyzer/Firmware/LogicAnalyzer/LogicAnalyzer_Build_Settings.h

27 lines
544 B
C
Raw Normal View History

2023-01-31 22:12:43 +00:00
#ifndef __BUILD_SETTINGS__
#define __BUILD_SETTINGS__
//Configure the build settings
//#define BUILD_PICO_W
//#define ENABLE_WIFI
/**
* WARNING! Ensure you choose the correct cyw library in the CMakeLists.txt
*
* It includes instructions on what to do
*
*/
//Do not touch, simple check for sanity
#ifdef ENABLE_WIFI
#ifndef BUILD_PICO_W
#error "WiFi can only be enabled if the build is for the pico W"
#endif
#endif
#endif