mirror of
https://github.com/meshtastic/firmware.git
synced 2025-10-28 07:13:25 +00:00
Also move RAK3172 and new EBYTE_E77_MBL define to variant.h, as this makes VSCode know about the defines properly... Co-authored-by: Ben Meadors <benmmeadors@gmail.com>
24 lines
487 B
C
24 lines
487 B
C
/*
|
|
EByte E77-MBL series
|
|
https://www.cdebyte.com/products/E77-900MBL-01
|
|
https://www.cdebyte.com/products/E77-400MBL-01
|
|
https://github.com/olliw42/mLRS-docu/blob/master/docs/EBYTE_E77_MBL.md
|
|
*/
|
|
|
|
/*
|
|
This variant is a work in progress.
|
|
Do not expect a working Meshtastic device with this target.
|
|
*/
|
|
|
|
#ifndef _VARIANT_EBYTE_E77_
|
|
#define _VARIANT_EBYTE_E77_
|
|
|
|
#define USE_STM32WLx
|
|
|
|
#define LED_PIN PB4 // LED1
|
|
// #define LED_PIN PB3 // LED2
|
|
#define LED_STATE_ON 1
|
|
|
|
#define EBYTE_E77_MBL
|
|
#endif
|