mirror of
https://github.com/meshtastic/firmware.git
synced 2025-04-26 18:09:04 +00:00

* Move to Portduino's getMacAddr() * Add ST7735/S screen support * Push Raspbian support into native target * Remove latent pigpio references. * CardKB defensive programming * Adds configurable spidev * Fixes to build on Fedora 40 * ENUMs are not #defines. Pull latest portduino * Add more configuration options for SPI displays * Add config.yaml option to set DIO3_TCXO_VOLTAGE * change tft clear() to fillScreen() Maintains compatability with ESPI driver. * Adds TXen and RXen pins to portduino * Add -c --config options to specify config file * Fail when a specified config file is unavailable --------- Co-authored-by: Ben Meadors <benmmeadors@gmail.com>
19 lines
254 B
C
19 lines
254 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_RTC
|
|
#define HAS_RTC 1
|
|
#endif
|
|
#ifndef HAS_TELEMETRY
|
|
#define HAS_TELEMETRY 1
|
|
#endif |