Robby Madruga

Results 11 comments of Robby Madruga

Will this HAL crate support the STM32L4+ series? Like STM32L4R9VG?

I get the same runtime error if the definition is omitted altogether. I was surprised when it compiled. Usually that would give me a link-time error in C for example....

Ideally, I would like to specify which parts of a bitfield can be orred together. In my case is doesn't make sense. INDICATOR_IDENTIFY can't be orred with an other INDICATOR_*,...

I just tried sketching out what I wanted but it turns out I'd need powerset(n) types that each implemented BirOr for each type to do this.

Maybe something like introducing a subquery syntax? ``` (declaration (storage_class_specifier "static") => (_ declarator: (identifier)@name)) ``` This basically reads as: For each declaration with a static storage_class_specifier, match any "sub-declarator"...

Or maybe something like: ``` (declaration (storage_class_specifier "static") { (_ declarator: (identifier)@name) } ) ``` Where anything in a set of braces is just an arbitrary query, with the only...

I gathered some information regarding this: - Windows - [GattSession.MaxPduSize](https://learn.microsoft.com/en-us/uwp/api/windows.devices.bluetooth.genericattributeprofile.gattsession.maxpdusize?view=winrt-22621) - Have not used. - macOS / iOS - [CBPeripheral.maximumWriteValueLength](https://developer.apple.com/documentation/corebluetooth/cbperipheral/1620312-maximumwritevaluelength) - I've used peripheral.maximumWriteValueLength(for: .withoutResponse) reliably in the past. .withResponse...

I find it kind of silly that they implemented it for a feature that has no wide support yet, and they neglect implementing it on the device level that every...

Sorry I haven't touched this in a year. Work had paused our Bluetooth project this passed year so I haven't worked on anything Bluetooth related. We should be resuming progress...

As @qdot points out in https://github.com/deviceplug/btleplug/pull/317, there is conflict in the way something like Windows and Android gets the MTU. It would probably better to have the interface be an...