News

JeeH 6.1.0

July 29, 2024
News

JeeH version 6.1.0 release notes and highlights: This is a minor release. I’m pushing this release out to prepare for some new ideas - mostly aimed at reducing overhead and complexity, and at improving JeeH’s low-power capabilities. The current low-power design lets JeeH decide when to enter a low-power mode, based on jeeh::lowestPower and jeeh::resumePower functions which can be tweaked for a specific scenario. One problem is that these two functions have to run in “handler” mode, i. ...

JeeH 6.0.0

June 29, 2024
News

JeeH version 6.0.0 release notes and highlights: This is a major new release of JeeH. A lot of things have changed: Now you see them, now you don’t: tasks are gone again. The routing of task messages was too complex. Threads are unchanged. Messages can still be sent to threads and to device drivers. Instead of waiting for messages coming back as reply, the sender can now set up a callback method, which is called when the reply is received. ...

JeeH 5.4.0

April 2, 2024
News

JeeH version 5.4.0 release notes and highlights: This is mostly to consolidate what there is, to prepare for a new v6 series of releases (the reason is described in this post - in short: I want to redo the tasks-vs-threads design and the test automation). Changes in v5.4.0: More work on a RAM-based test runner, using openocd to upload the code. Explore more ways to send test output through ITM/SWO, which avoids the need to dedicate a UART to this. ...

JeeH 5.3.0

March 9, 2024
News

JeeH version 5.3.0 release notes and highlights: This release brings a number of major changes: Tasks have been renamed to Threads … because that’s what they really are. And with that out of the way: a new Task type has been added, to support asynchronous processing, i.e. an “async/await” style of doing work which does not run in a separate thread. This reduces overhead and avoids the need for a separate stack. ...

JeeH 5.2.0

February 12, 2024
News

JeeH version 5.2.0 release notes and highlights: This is the most extensive release so far, with new SDIO and Ethernet drivers. Everything is still highly experimental, but the main pieces of the multitasker puzzle are starting to fit together quite nicely. Using lightweight messages as the main vehicle for communication between tasks and drivers works really well and allows pacing the different pieces of an application. The driver model helps decouple the different layers, as illustrated by the eth driver and net worker task: neither one needs knowledge of the other (their code can be included in either order). ...