23 lines
408 B
C
23 lines
408 B
C
/*
|
|
STM32WLE5 Core Module for LoRaWAN® RAK3372
|
|
https://store.rakwireless.com/products/wisblock-core-module-rak3372
|
|
*/
|
|
|
|
/*
|
|
This variant is a work in progress.
|
|
Do not expect a working Meshtastic device with this target.
|
|
*/
|
|
|
|
#ifndef _VARIANT_RAK3172_
|
|
#define _VARIANT_RAK3172_
|
|
|
|
#define USE_STM32WLx
|
|
|
|
#define LED_POWER PA0 // Green LED
|
|
#define LED_STATE_ON 1
|
|
|
|
#define RAK3172
|
|
#define SERIAL_PRINT_PORT 1
|
|
|
|
#endif
|