Nicolas Goy
Nicolas Goy
Just don't use `~/.itch` (https://0x46.net/thoughts/2019/02/01/dotfile-madness/) I'd put everything in `$XDG_DATA_HOME`. `$XDG_CONFIG_HOME` should only contain configuration that is intended to be edited "by hand". But if your config file is human...
I agree, the standard is not clear. Personally, I use arch and just create an AUR for all apps, except like 2 or three app images I use, I put...
We could use https://docs.rs/cortex-m/0.6.3/cortex_m/peripheral/struct.NVIC.html#method.is_enabled on the required interrupts.
What pattern do you want to use? Builder pattern?
Yeah, builders are really verbose, but I think they are more idiomatic. Personally I like them mostly because they can have signatures like: ```rust pub fn set_name Self { }...
I still think a builder would be the way to go eventually, but it's not a priority. And also we can wait to see how the library is used and...
Can't we distribute the softdevice (.hex) in the repo? This would ensure compatibility.
I'm trying to gather as much reference as possible: - List of AD types (first byte after length) - List of GATT services, which are two bytes (little endian, so...
I'd like to tackle this issue, but I need to know a few things: - Is a builder pattern OK, or do you prefer a plain rust struct that will...
Yeah I guess a builder isn't justified. Especially if we don't use builders elsewhere (like for config). We have to be consistent. I think this library is low level enough...