mirror of https://github.com/lumapu/ahoy.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
326 B
16 lines
326 B
#ifndef __CONFIG_OVERRIDE_H__
|
|
#define __CONFIG_OVERRIDE_H__
|
|
|
|
// save space in the ESP32 by disabling modules
|
|
|
|
#if !defined(CONFIG_IDF_TARGET_ESP32S3)
|
|
#ifdef PLUGIN_DISPLAY
|
|
#undef PLUGIN_DISPLAY
|
|
#endif
|
|
|
|
#ifdef ENABLE_HISTORY
|
|
#undef ENABLE_HISTORY
|
|
#endif
|
|
#endif
|
|
|
|
#endif /*__CONFIG_OVERRIDE_H__*/
|
|
|