Results 16 comments of Brian Conway

Yes, good point. There is a V2 version of the grpc-gateway generator, as well. My own projects are using: ``` go get google.golang.org/protobuf/cmd/protoc-gen-go \ google.golang.org/grpc/cmd/protoc-gen-go-grpc \ github.com/grpc-ecosystem/grpc-gateway/v2/protoc-gen-grpc-gateway \ github.com/grpc-ecosystem/grpc-gateway/v2/protoc-gen-openapiv2 ```...

> Maybe it is best not to use F9 if you expect it to reset to first boot defaults rather than a secondary set of defaults. Thank you, that answers...

Thank you for taking the time and making such a detailed reply, I appreciate it. I will take a look at the test build. I may be misremembering the combinations...

Thanks for the offer, I am indeed still in the Austin area. Things are a little crazy right now in-between the holidays, but I'll keep it in mind. To clarify...

I did some testing to clarify some earlier comments, which now appear incorrect (sorry!). Using an RPi 3B w/o RTC, with U-Boot 2021.07 and OpenBSD 7.0-stable, a warm reboot does...

Seeing this as well, where ``` _ = common.Role(0) _ = common.Status(0) ``` is being changed to (non-compiling) ``` _ = common.common / role.proto_Role(0) ``` I haven't had a chance...

I recommend using the API (gRPC, or the REST add-on) for this. 150 is a fairly small number and should be processed quickly. https://www.chirpstack.io/docs/chirpstack/api/grpc.html

As a workaround, you could use the packages built/included with Alpine. I've had luck with `protobuf-dev grpc-plugins` on Alpine arm64.

My builds are spread between Dockerfiles and Makefiles, but the relevant pieces are along the lines of: ``` apk add --no-cache git make protobuf-dev grpc-plugins protoc --plugin=protoc-gen-grpc=/usr/bin/grpc_python_plugin -I=../protobuf \ --python_out=....