From f52fbec87e641061fb22a559485925f4ac38968f Mon Sep 17 00:00:00 2001 From: Me No Dev Date: Sun, 20 Feb 2022 14:58:03 +0200 Subject: [PATCH] Fix missed default declaration for tarch --- src/EspExceptionDecoder.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/EspExceptionDecoder.java b/src/EspExceptionDecoder.java index a11cbc8..206e787 100644 --- a/src/EspExceptionDecoder.java +++ b/src/EspExceptionDecoder.java @@ -270,6 +270,7 @@ private void createAndUpload(){ tarch = BaseNoGui.getBoardPreferences().get("build.tarch"); if(tarch == null || tarch.contentEquals("")){ editor.statusError("Arch Not Found for '"+BaseNoGui.getBoardPreferences().get("name")+"'. Defaulting to 'xtensa'"); + tarch = "xtensa"; } target = BaseNoGui.getBoardPreferences().get("build.target"); if(target == null || target.contentEquals("")){