forked from things-nyc/arduino-lmic
-
Notifications
You must be signed in to change notification settings - Fork 212
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge git://github.com/ChrSchultz/arduino-lmic into ChrSchultz-master
- Loading branch information
Showing
3 changed files
with
71 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
|
||
|
||
#include <arduino_lmic_hal_boards.h> | ||
#include <Arduino.h> | ||
|
||
#include "../lmic/oslmic.h" | ||
|
||
#define LORA_DIO0 26 | ||
#define LORA_DIO1 33 | ||
#define LORA_DIO2 32 | ||
|
||
namespace Arduino_LMIC { | ||
|
||
class HalConfiguration_ttgo_lora32_v21 : public HalConfiguration_t | ||
{ | ||
public: | ||
enum DIGITAL_PINS : uint8_t | ||
{ | ||
PIN_SX1276_NSS = 18, | ||
PIN_SX1276_NRESET = 23, | ||
PIN_SX1276_DIO0 = LORA_DIO0, | ||
PIN_SX1276_DIO1 = LORA_DIO1, | ||
PIN_SX1276_DIO2 = LORA_DIO2, | ||
PIN_SX1276_ANT_SWITCH_RX = HalPinmap_t::UNUSED_PIN, | ||
PIN_SX1276_ANT_SWITCH_TX_BOOST = HalPinmap_t::UNUSED_PIN, | ||
PIN_SX1276_ANT_SWITCH_TX_RFO = HalPinmap_t::UNUSED_PIN, | ||
PIN_VDD_BOOST_ENABLE = HalPinmap_t::UNUSED_PIN, | ||
}; | ||
|
||
virtual void begin(void) override | ||
{ | ||
digitalWrite(PIN_SX1276_NSS, 1); | ||
pinMode(PIN_SX1276_NSS, OUTPUT); | ||
} | ||
|
||
// virtual void end(void) override | ||
|
||
// virtual ostime_t setModuleActive(bool state) override | ||
|
||
}; | ||
|
||
static HalConfiguration_ttgo_lora32_v21 myConfig; | ||
|
||
static const HalPinmap_t myPinmap = | ||
{ | ||
.nss = HalConfiguration_ttgo_lora32_v21::PIN_SX1276_NSS, // chip select is D7 | ||
.rxtx = HalConfiguration_ttgo_lora32_v21::PIN_SX1276_ANT_SWITCH_RX, // RXTX is D29 | ||
.rst = HalConfiguration_ttgo_lora32_v21::PIN_SX1276_NRESET, // NRESET is D8 | ||
|
||
.dio = {HalConfiguration_ttgo_lora32_v21::PIN_SX1276_DIO0, // DIO0 (IRQ) is D25 | ||
HalConfiguration_ttgo_lora32_v21::PIN_SX1276_DIO1, // DIO1 is D26 | ||
HalConfiguration_ttgo_lora32_v21::PIN_SX1276_DIO2, // DIO2 is D27 | ||
}, | ||
.rxtx_rx_active = 0, | ||
.rssi_cal = 10, | ||
.spi_freq = 8000000, /* 8MHz */ | ||
.pConfig = &myConfig | ||
}; | ||
|
||
const HalPinmap_t * GetPinmap_ttgo_lora32_v21 (void) | ||
{ | ||
return &myPinmap; | ||
} | ||
|
||
}; // namespace Arduino_LMIC | ||
|
||
|