Brad Campbell
Brad Campbell
> I've had this one running for hours and don't see any issues with missing sentences. How are you checking if messages are getting dropped? From my understanding, the only...
> I haven't found a single GNSS device that clock stretches. Let me know if you know of any that do. > > Everything I see just Nacks when you...
I agree with your assessment. In brief: don't use `app_state`. This breaks app signing and we don't want to prevent signing thread apps. In nonvolatile_storage_driver, I did write: https://github.com/tock/tock/blob/01918fac039fd6d37c4cea1b3bdbd9ac2683af3f/capsules/extra/src/nonvolatile_storage_driver.rs#L9-L10 At...
I should add, I don't think changing nonvolatile_storage_driver.rs should require changing the syscall interface. So it should be possible to work on open thread with full flash before any isolation...
I think all of these are good designs, and the benefit of capsules is we don't _have_ to choose, we could support all of them, and let board authors decide...
I've been meaning to write a TRD for storage permissions for a while: #4021. While not necessarily critical to resolve this issue, it would help clarify exactly how flash regions...
Implemented as of [#4258](https://github.com/tock/tock/pull/4258)!
One impact of the changes to the way process credentials are checked is that if `require_credentials()` returns `false`, we can no longer tell if a process had valid credentials or...
All tasks are now implemented!
> This implementation only includes support for single-core, single-threaded, platforms (as all of Tock for the moment) via the unsafe `new_single_core` constructor, though extending to multiple cores should be relatively...