jlink jtag debug now works on lora32 board, problem was gpio14 is needed

This commit is contained in:
geeksville
2020-02-05 15:37:58 -08:00
parent 1929d38226
commit 83fb38b38c
8 changed files with 124 additions and 31 deletions

View File

@@ -27,6 +27,7 @@ MeshRadio::MeshRadio(MemoryPool<MeshPacket> &_pool, PointerQueue<MeshPacket> &_r
bool MeshRadio::init()
{
#ifdef RESET_GPIO
pinMode(RESET_GPIO, OUTPUT); // Deassert reset
digitalWrite(RESET_GPIO, HIGH);
@@ -35,6 +36,7 @@ bool MeshRadio::init()
delay(10);
digitalWrite(RESET_GPIO, HIGH);
delay(10);
#endif
if (!manager.init())
{