mirror of
https://github.com/meshtastic/firmware.git
synced 2026-01-06 09:57:52 +00:00
* WIP * Do the right things * Add to build matrix * Yaml lint has annoyed me for the final time
30 lines
566 B
C
30 lines
566 B
C
#pragma once
|
|
|
|
#define ARCH_RP2040
|
|
|
|
#ifndef HAS_BUTTON
|
|
#define HAS_BUTTON 1
|
|
#endif
|
|
#ifndef HAS_TELEMETRY
|
|
#define HAS_TELEMETRY 1
|
|
#endif
|
|
#ifndef HAS_SCREEN
|
|
#define HAS_SCREEN 1
|
|
#endif
|
|
#ifndef HAS_WIRE
|
|
#define HAS_WIRE 1
|
|
#endif
|
|
#ifndef HAS_SENSOR
|
|
#define HAS_SENSOR 1
|
|
#endif
|
|
#ifndef HAS_RADIO
|
|
#define HAS_RADIO 1
|
|
#endif
|
|
|
|
#if defined(RPI_PICO)
|
|
#define HW_VENDOR meshtastic_HardwareModel_RPI_PICO
|
|
#elif defined(RAK11310)
|
|
#define HW_VENDOR meshtastic_HardwareModel_RAK11310
|
|
#elif defined(SENSELORA_RP2040)
|
|
#define HW_VENDOR meshtastic_HardwareModel_SENSELORA_RP2040
|
|
#endif |