Jagoba Gascón

Results 29 comments of Jagoba Gascón

Not sure if this is related but `event.Run()` returns a `

It looks like we forgot to load the service information data from the advertising: https://github.com/tinygo-org/bluetooth/blob/a668e1b0a062612faa41ac354f7edd5b25428101/gap_windows.go#L245-L248 The Python library works because they do load that information: https://github.com/hbldh/bleak/blob/e01e2640994b99066552b6161f84799712c396fa/bleak/backends/winrt/scanner.py#L147C41-L147C54 I made a quick...

Good news! I got it to work after doing the same they do here: https://github.com/hbldh/bleak/blob/e01e2640994b99066552b6161f84799712c396fa/bleak/backends/winrt/scanner.py#L169 ``` found device: 57:57:57:BC:D9:9B -63 ServiceData length: 1 - UUID: 0000fe9f-0000-1000-8000-00805f9b34fb - Data: len =...

You are calling `GetAt` twice. Remove the function provided by WinRT and use only the `syscall`. It should work. Also hr is the error result. Not the output parameter. ```diff...

It looks like yesterday's `protoc-gen-go` release ([v1.34.2](https://github.com/protocolbuffers/protobuf-go/releases/tag/v1.34.2)) generates code that is not compatible with the used Go 1.12 version. I changed the `COMPILE-PROTOS.sh` script to remove the `@latest` tag and...

Yes, 100% we should be checking for a non-zero value. This is the `if` before that change: https://github.com/tinygo-org/bluetooth/blob/8503b6ba1240fb47d4a144aa1ea6368f17ee539e/gattc_windows.go#L408-L412

I can confirm that applying this patch to the rules fixes the issue: ```diff diff --git a/tools/codesigningtool/codesigningtool.py b/tools/codesigningtool/codesigningtool.py index 41091dd9..fed19542 100644 --- a/tools/codesigningtool/codesigningtool.py +++ b/tools/codesigningtool/codesigningtool.py @@ -225,7 +225,13 @@ def...

I created this small hello world project: https://github.com/jagobagascon/rules_apple-2753 It **runs fine in the simulator**. But if we try to run it **on a physical** device from a Mac that uses...