Brandon Matthews
Brandon Matthews
In the [LPC178x7x.svd file](http://ds.arm.com/media/resources/db/chip/nxp/lpc1788/LPC178x7x.svd) (which has a bucket of other problems besides), I discovered that the PWM0 match registers are not contiguous, and will cause a name collision. To wit,...
This PR adds a small doc update to illustrate how to permit using the `start` function of the CountDown trait when writing a driver.
This PR improves support for backing oauth2_proxy with Azure Active Directory, along with a few other changes. We've been using this internally for lightly-loaded services for a couple of weeks,...
This is a placeholder issue to track the fact that non-errors are reported at the error log level (and look red and scary) even though they don't (necessarily) represent errors....
BatteryState is included in DeviceStatus: ```json { "CommuniqueType": "ReadResponse", "Header": { "MessageBodyType": "OneDeviceStatus", "StatusCode": "200 OK", "Url": "/device/37/status" }, "Body": { "DeviceStatus": { "href": "/device/37/status", "Device": { "href": "/device/37" },...
Per [this great comment](https://www.reddit.com/r/rust/comments/67qpgj/libnssaad_a_glibc_name_switch_service_plugin/dgtmptp/?context=3), change the argument passed to `.post` to take a `Url` object constructed with `join()` instead of a string constructed with `format!()`.
Per [this great comment](https://www.reddit.com/r/rust/comments/67qpgj/libnssaad_a_glibc_name_switch_service_plugin/dgtmptp/?context=3), use the derived Deserialize trait alongside `#[serde(rename)]`, and represent UserInfo and GroupInfo objects directly.
At present, libnss-aad will emit debugging messages to stdout if compiled in debug mode, but is otherwise completely silent. On-demand debugging output when in release mode would help diagnosis. Investigate...
At present, libnss-aad acquires a new JWT for each Graph API "transaction". This token includes a bearer token and a refresh token, each of which can be cached. Refresh tokens...
I have kind of a weird situation. I am using esp web tools to [flash devices](https://ratgdo.github.io/homekit-ratgdo/flash.html) in [my project](https://github.com/ratgdo/homekit-ratgdo), and flashing devices works fine. So does provisioning WiFi, and visiting...