Brad Campbell
Brad Campbell
Seems good.
One idea is a weather station based on: - https://www.sparkfun.com/products/22636 - https://www.sparkfun.com/products/16984
I'm planning to write a soil moisture tutorial with: - one app reading analog sensor - one app sending the data using thread - one app deciding when to water...
> You can also send the data using LoRa, which should provide some more range as well I don't currently have a Tock-with-LoRa board :(
I'm a little confused about this as well...it seems like we _should_ be using these.
Well, it's also possible that we should provide process loading functions which have a callback so a board can see if there were any errors during process loading/checking. I agree...
I'm not sure that process loading can't include checking a signature. Just as the kernel refuses to run apps that need a newer kernel version, the kernel can fail to...
An update on this: I played around with creating a new type in the process family: `ProcessBinary` which is created after parsing TBF headers and checks if the process is...
You are completely right and I started on a version that looks like that. Really the idea that process loading is synchronous just doesn't mesh with Tock and fighting it...
Update: the async process loader on https://github.com/tock/tock/tree/process-binary works for a simple test case of loading a single app.