Dario Nieuwenhuis
Dario Nieuwenhuis
go version go1.10 linux/amd64 The following snippet causes the stacktrace to point to the wrong source code line. ```go package main import ( "fmt" "runtime/debug" "github.com/pkg/errors" ) type Bar struct...
in L0, L4, L4+ it doesn't exist according to RMs
in H7 and WB: LPUARTs have GTPR at offs 0x10, RTOR at offs 0x14, but in the RMs these offsets are 'reserved', so it seems these registers don't exist for...
How to reproduce: - Create a writable char of type `u8`. - Connect to the device with nRF Connect, write an empty value to it. I have no idea why...
This would be mainly useful to run concurrently Bluetooth with other protocols (such as ESB for example). This is not a very high priority because its use is quite niche....
As seen in #16, sd_softdevice_enable HardFaults if interrupts are disabled. It'd be cool to detect that and panic with a human-friendly error message so the user can figure out what's...
the `TxPower` enum has all variants regardless of chips.
The softdevice handles 128bit uuids in a funny manner: you register them at runtime to get an "uuid type", and then to use it you specify the type, and bytes...
The current `Config` struct is very ugly because it uses the original C structs. - Very unergonomic, especially when they have bitfields. - All fields are `Option`s, which is -...