Implement extended device metadata (#1874)

* Implement extended device metadata

* HAS_BLUETOOTH should be global
This commit is contained in:
Ben Meadors
2022-10-30 10:02:11 -05:00
committed by GitHub
parent 1f9db0a8fe
commit 311835a231
5 changed files with 35 additions and 6 deletions

View File

@@ -143,7 +143,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#define HAS_WIFI 0
#endif
#ifndef HAS_ETHERNET
#define ETHERNET 0
#define HAS_ETHERNET 0
#endif
#ifndef HAS_SCREEN
#define HAS_SCREEN 0
@@ -166,6 +166,12 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#ifndef HAS_RTC
#define HAS_RTC 0
#endif
#ifndef HAS_CPU_SHUTDOWN
#define HAS_CPU_SHUTDOWN 0
#endif
#ifndef HAS_BLUETOOTH
#define HAS_BLUETOOTH 0
#endif
#include "RF95Configuration.h"
#include "DebugConfiguration.h"