Wojciech M. Zabolotny
Wojciech M. Zabolotny
I need to implement a LoRaWAN device that sends a message every 10 minutes. To limit the power consumption I need to put the device to sleep between sending the...
The [ENC28J60](https://www.microchip.com/wwwproducts/en/en022889) chip is a cheap solution suitable for providing the Ethernet connectivity for simple microcontroller devices. It would be beneficial to be able to use it with cheap MicroPython-capable...
Build in Debian/testing does not work: ``` $ ./gradlew shadowJar FAILURE: Build failed with an exception. * What went wrong: Could not determine java version from '11.0.12'. * Try: Run...
When I try to compile J1B (via `make` in `j1b/swapforth/j1b/verilator`), I get the old error: ``` verilator --l2-name v -Wall -I../verilog/ --cc j1b.v ../verilog/j1.v ../verilog/stack.v --top-module j1b --exe sim_main.cpp %Error:...
Compilation of J1B with Verilator does not work in Linux/Debian. Small modification of j1b.v needed.
When I try to run the `j1b` emulated with Verilator in the `j1b/verilator` directory, I get the following error: verilator --l2-name v -Wall -I../verilog/ --cc j1b.v ../verilog/j1.v ../verilog/stack.v --top-module j1b...
Forth allows certain base-setting prefixes in literals: e.g.,: * & – decimal * \# – decimal * % – binary * $ – hexadecimal unfortunately, it seems that in swapforth...
When working with the real hardware, the user defined words are stored in the file which must be later on transmitted via UART (e.g. the swapforth.fs) . That means, that...
The changes below enable running "localtest" or "bootstrap" in j1b/verilator directory on machines running Debian/testing Linux. Without those changes, the Python package needed for simulations could not be built and...
I'm using a Debian/testing system with `Verilator 5.006 2023-01-22 rev (Debian 5.006-3)` When I try to run `localtest` in `swapforth/j1b/verilator` directory, I get the following error: ``` $ ./localtest verilator...
I have got the tcp-async example working with Wokwi simulator (see archive [tcp-async-1.zip](https://github.com/esp-rs/esp-idf-svc/files/14393508/tcp-async-1.zip)). However, I need my ESP to communicate with a server by sending structured messages. Therefore, I wanted...