ccollins476ad
ccollins476ad
`t_stacktop` was recently removed from `struct os_task`. The removed field is still referenced in a few places, causing build errors for certain configurations. ``` ./repos/apache-mynewt-core/kernel/os/src/os_stacktrace.c:87: if (sp > (uintptr_t)t->t_stacktop &&...
We should make sure the contract of each HAL function is clearly specified, both in header files and in the online documentation. The specification should aim to leave no questions...
When building a split image in Windows, newt will likely fail witha message similar to the following: ``` Error: fork/exec C:\Program Files (x86)\GNU Tools ARM Embedded\7.0 2017q4\bin\arm-none-eabi-objcopy.exe: The filename or...
``` syscfg.vals: FOO: 1 syscfg.vals.BAR: FOO: 1 ``` These two `syscfg.vals` mappings are in conflict. The first enables `FOO` unconditionally; the second only enables `FOO` if bar is set. When...
For example: ``` newt target copy target-src target-dst ``` If `target-src`'s `pkg.yml` file specifies the `pkg.deps` field, this field does not get copied over to the destination target's `pkg.yml`.
Mynewt has the concept of "split images (http://mynewt.apache.org/latest/os/modules/split/split.html). Unlike for normal images, the split image state is stored in user flash, not in MCUboot trailers. When mynewt contained its own...
1. In macOS, use one of the BLE transports (`ble` or `oic_ble`). 2. Send a command to a device, e.g., ``` newtmgr --conntype ble --connstring peer_name=cc image list ``` 3....
Fixes #191. Change unix port.Write() implementation to match io.Writer requirement: > Write must return a non-nil error if it returns n < len(p) Keep executing write syscall until failure or...
### Describe the problem (see https://github.com/bugst/go-serial/pull/192) From the [io.Writer GoDoc](https://pkg.go.dev/io#Writer): > Write must return a non-nil error if it returns n < len(p). The docs (`doc.go`) indicate that `serial.Port` implements...