mirror of
https://github.com/meshtastic/firmware.git
synced 2025-02-11 15:11:25 +00:00
![Ben Meadors](/assets/img/avatar_default.png)
* Wio-e5 / STM32WL wip * Stubbing some FS stuff out * Wio-e5 / STM32WL wip * Stubbing some FS stuff out * Wio-e5 / STM32WL wip * Stubbing some FS stuff out * Wio-e5 / STM32WL wip * Stubbing some FS stuff out * LittleFS compiles. Can't check with actual device. * make cppcheck happy again * Guard against accelerometer thread * Missed a spot * Upload via ST-LINK * Derive MAC address from UID * upload port * Trunk it * Guard it * Maybe fix the cache error on startup. * Latest RadioLib ref to fix SubGHZ * revert nasty Sub-GHz Hack * Boots and radio inits with RadioLib 6.0, LittleFS doesn't seem to work --------- Co-authored-by: Thomas Göttgens <tgoettgens@gmail.com> Co-authored-by: GUVWAF <thijs@havinga.eu>
26 lines
348 B
C
26 lines
348 B
C
#pragma once
|
|
|
|
#define ARCH_STM32WL
|
|
|
|
//
|
|
// defaults for STM32WL architecture
|
|
//
|
|
|
|
#ifndef HAS_RADIO
|
|
#define HAS_RADIO 1
|
|
#endif
|
|
|
|
//
|
|
// set HW_VENDOR
|
|
//
|
|
|
|
#ifndef HW_VENDOR
|
|
#define HW_VENDOR meshtastic_HardwareModel_PRIVATE_HW
|
|
#endif
|
|
|
|
/* virtual pins */
|
|
#define SX126X_CS 1000
|
|
#define SX126X_DIO1 1001
|
|
#define SX126X_RESET 1003
|
|
#define SX126X_BUSY 1004
|