mirror of
https://github.com/meshtastic/firmware.git
synced 2025-12-23 03:00:56 +00:00
* Clean up SimRadio and don't let it use PKC * Add collision emulation for SimRadio * Add stats from SimRadio to LocalStats * Make emulating collisions optional
22 lines
299 B
C
22 lines
299 B
C
#pragma once
|
|
|
|
#define ARCH_PORTDUINO 1
|
|
|
|
//
|
|
// set HW_VENDOR
|
|
//
|
|
|
|
#define HW_VENDOR meshtastic_HardwareModel_PORTDUINO
|
|
|
|
#ifndef HAS_WIFI
|
|
#define HAS_WIFI 1
|
|
#endif
|
|
#ifndef HAS_RADIO
|
|
#define HAS_RADIO 1
|
|
#endif
|
|
#ifndef HAS_RTC
|
|
#define HAS_RTC 1
|
|
#endif
|
|
#ifndef HAS_TELEMETRY
|
|
#define HAS_TELEMETRY 1
|
|
#endif |