mirror of
https://github.com/meshtastic/firmware.git
synced 2025-04-23 09:06:02 +00:00
23 lines
465 B
C
23 lines
465 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
|
|
|
|
#endif
|