Skip to content

Commit d050e5b

Browse files
authored
Patch 0.3.1 (#180)
* 🐛 Do not use dev version for idf action * 🚑 Hotfix EDWARD callbackmapping synchronization (#74)
1 parent 62aa3b5 commit d050e5b

File tree

4 files changed

+7
-9
lines changed

4 files changed

+7
-9
lines changed

.github/workflows/compile.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ jobs:
112112
- name: Build WARDuino for ESP-IDF
113113
uses: espressif/esp-idf-ci-action@v1
114114
with:
115-
esp_idf_version: latest
115+
esp_idf_version: v5.0.2
116116
target: esp32
117117
command: idf.py build -DBUILD_ESP=ON
118118
path: .

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ if (BUILD_ESP)
2626
include($ENV{IDF_PATH}/tools/cmake/project.cmake "${PROJECT_BINARY_DIR}/../include")
2727
endif (BUILD_ESP)
2828

29-
project(WARDuino VERSION 0.3.0)
29+
project(WARDuino VERSION 0.3.1)
3030

3131
set(WARDUINO_VERSION_STRING "${PROJECT_VERSION}")
3232
configure_file(src/config.h.in include/warduino/config.h)

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=WARDuino
2-
version=0.3.0
2+
version=0.3.1
33
author=Robbert Gurdeep Singh <[email protected]>, Christophe Scholliers <[email protected]>, Tom Lauwaerts <[email protected]>, Carlos Rojas Castillo <[email protected]>, Joel Martin <[email protected]>
44
maintainer=Robbert Gurdeep Singh <[email protected]>, Christophe Scholliers <[email protected]>, Tom Lauwaerts <[email protected]>
55
sentence=A library that enables the use of WebAssembly on Arduino boards with debugging support

src/Edward/proxy_supervisor.cpp

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -274,12 +274,10 @@ bool ProxySupervisor::call(RFC *callee) {
274274
}
275275
// Fetch new callback mapping
276276
// convert message to hex TODO: move to proxyserver
277-
// char cmdBuffer[10] = "";
278-
// int cmdBufferLen = 0;
279-
// sprintf(cmdBuffer, "%x\n%n", interruptDUMPCallbackmapping,
280-
// &cmdBufferLen);
281-
// WARDuino::instance()->debugger->supervisor->send(cmdBuffer,
282-
// cmdBufferLen);
277+
char cmdBuffer[10] = "";
278+
int cmdBufferLen = 0;
279+
sprintf(cmdBuffer, "%x\n%n", interruptDUMPCallbackmapping, &cmdBufferLen);
280+
WARDuino::instance()->debugger->supervisor->send(cmdBuffer, cmdBufferLen);
283281
this->deserializeRFCResult(callee);
284282
return true;
285283
}

0 commit comments

Comments
 (0)