Brad Campbell
Brad Campbell
Why not split setup qemu into its own target? Right now if you don't want to set all of this up you can't use `make setup` as the instructions indicate.
I agree that if `pwm_a` and `pwm_b` can be used concurrently then Tock shouldn't force uses of those PWM outputs to be serialized. I think the first consideration is that...
After some more thought and discussion, it seems like we don't want a virtualizer and instead want a wrapper which provides a `PwmPin`s. ```rust struct SinglePwmPin { pwm: &P, pin:...
Yes we should because then tockloader can handle app placement and ordering. But really we should add proper support in tockloader with autodetection.
There is https://docs.tockos.org/kernel/macro.static_init
Doing something about IPC is definitely on our roadmap. There are a number of issues (eg #1993). I don't think a plan is yet concrete enough for a tracking issue,...
Re: total size: The size of an app can mean two things: 1. The size of a TBF 2. The size of the flash region an app is allocated My...
Implementing this to get it working shouldn't be too bad, and #3941 does have a working version. The harder part is nailing all of the interfaces so we are comfortable...
Two comments: 1. Combining `SubSlice` with the `DmaRef` somehow seems like a nice way to have capsules 1) use a dma safe buffer without needing a capability to access the...
If I'm understanding what this does correctly, it changes brk/sbrk() to change the break to what was requested or something close. I'm not sure we want to change what we...