Jonathan Soo
Jonathan Soo
When Rust has LLD and LLDB integration, does anyone know whether Rust will build, ship, and install the standalone binaries also? And what about other utilities? `objcopy` will be needed...
Can we get `llvm-objcopy` included also? It's needed for generating .bin or .hex files from the ELF output. All of the flash loaders (Bossa, Teensy, dfu-util) as well as ST-Link...
In PR #145, I've updated set_grammar to take a simple Box with the following contents: 0: # of rules 1..N+1: index of rule N N+2..: grammar elements This allows us...
I've been working on USB stacks for a couple of different MCUs (STM32F4 / F7 and K64, hoping to get to STM32F0, STM32L4 and SAMD21 soon) and device classes (HID,...
In this context, can you go further into what you mean by static and dynamic? Do you mean static creation before starting up tasks vs. creating / destroying these objects...
For `bobbin-cli test` I implemented a simple text-based protocol similar to TAP. From the README: > ``` > [start] Running tests for frdm-k64f > [pass] 0 > [pass] 1 >...
I've been working on this exact problem for about a year now, and you bring up a lot of great points about what's desirable and how hard it will be...
I have been using a s-expression based DSL that is a superset of SVD to solve some of these problems for my own projects: https://github.com/bobbin-rs/bobbin-sdk/tree/master/dsl It's been put together specifically...
I recently released [Bobbin CLI](https://github.com/bobbin-rs/bobbin-cli/), which includes a simple text-based serial console based test runner. I experimented with a full-fledged two-way COBS encoded TLV-style protocol, but eventually decided that I...