mirror of
https://github.com/meshtastic/firmware.git
synced 2026-01-27 04:02:05 +00:00
36 lines
727 B
C
36 lines
727 B
C
#pragma once
|
|
|
|
#define ARCH_PORTDUINO 1
|
|
|
|
//
|
|
// set HW_VENDOR
|
|
//
|
|
|
|
#define HW_VENDOR portduino_status.hardwareModel
|
|
|
|
#ifndef HAS_BUTTON
|
|
#define HAS_BUTTON 1
|
|
#endif
|
|
#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
|
|
#ifndef HAS_SENSOR
|
|
#define HAS_SENSOR 1
|
|
#endif
|
|
#ifndef HAS_TRACKBALL
|
|
#define HAS_TRACKBALL 1
|
|
#define TB_DOWN (uint8_t) portduino_config.tbDownPin.pin
|
|
#define TB_UP (uint8_t) portduino_config.tbUpPin.pin
|
|
#define TB_LEFT (uint8_t) portduino_config.tbLeftPin.pin
|
|
#define TB_RIGHT (uint8_t) portduino_config.tbRightPin.pin
|
|
#define TB_PRESS (uint8_t) portduino_config.tbPressPin.pin
|
|
#endif |