Skip to content

Commit

Permalink
Patch 0.3.1 (#180)
Browse files Browse the repository at this point in the history
* 🐛 Do not use dev version for idf action

* 🚑 Hotfix EDWARD callbackmapping synchronization (#74)
  • Loading branch information
tolauwae authored May 25, 2023
1 parent 62aa3b5 commit d050e5b
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ jobs:
- name: Build WARDuino for ESP-IDF
uses: espressif/esp-idf-ci-action@v1
with:
esp_idf_version: latest
esp_idf_version: v5.0.2
target: esp32
command: idf.py build -DBUILD_ESP=ON
path: .
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ if (BUILD_ESP)
include($ENV{IDF_PATH}/tools/cmake/project.cmake "${PROJECT_BINARY_DIR}/../include")
endif (BUILD_ESP)

project(WARDuino VERSION 0.3.0)
project(WARDuino VERSION 0.3.1)

set(WARDUINO_VERSION_STRING "${PROJECT_VERSION}")
configure_file(src/config.h.in include/warduino/config.h)
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=WARDuino
version=0.3.0
version=0.3.1
author=Robbert Gurdeep Singh <Robbert.GurdeepSingh@UGent.be>, Christophe Scholliers <Christophe.Scholliers@UGent.be>, Tom Lauwaerts <Tom.Lauwaerts@UGent.be>, Carlos Rojas Castillo <crojcas@vub.be>, Joel Martin <github@martintribe.org>
maintainer=Robbert Gurdeep Singh <Robbert.GurdeepSingh@UGent.be>, Christophe Scholliers <Christophe.Scholliers@UGent.be>, Tom Lauwaerts <Tom.Lauwaerts@UGent.be>
sentence=A library that enables the use of WebAssembly on Arduino boards with debugging support
Expand Down
10 changes: 4 additions & 6 deletions src/Edward/proxy_supervisor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -274,12 +274,10 @@ bool ProxySupervisor::call(RFC *callee) {
}
// Fetch new callback mapping
// convert message to hex TODO: move to proxyserver
// char cmdBuffer[10] = "";
// int cmdBufferLen = 0;
// sprintf(cmdBuffer, "%x\n%n", interruptDUMPCallbackmapping,
// &cmdBufferLen);
// WARDuino::instance()->debugger->supervisor->send(cmdBuffer,
// cmdBufferLen);
char cmdBuffer[10] = "";
int cmdBufferLen = 0;
sprintf(cmdBuffer, "%x\n%n", interruptDUMPCallbackmapping, &cmdBufferLen);
WARDuino::instance()->debugger->supervisor->send(cmdBuffer, cmdBufferLen);
this->deserializeRFCResult(callee);
return true;
}
Expand Down

0 comments on commit d050e5b

Please sign in to comment.