You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First of all, I'd like to say that this is a really great library. Awesome work by the developers in making something that this well designed and is easy to use.
I used the dialect-import tool to generate my own dialect that uses common.xml
While building this for armv7 using: GOOS=linux GOARCH=arm GOARM=7 go build
This is probably happening because dialect-import defines the enum constants as int over here. HIL_SENSOR_UPDATED_FLAGS are used as uint32_t in messages. This is probably creating problems for arm32 architecture.
The text was updated successfully, but these errors were encountered:
This issue is being locked automatically because it has been closed for more than 6 months.
Please open a new issue in case you encounter a similar problem.
First of all, I'd like to say that this is a really great library. Awesome work by the developers in making something that this well designed and is easy to use.
I used the
dialect-import
tool to generate my own dialect that usescommon.xml
While building this for armv7 using:
GOOS=linux GOARCH=arm GOARM=7 go build
I got the following errors:
This is probably happening because
dialect-import
defines the enum constants asint
over here. HIL_SENSOR_UPDATED_FLAGS are used asuint32_t
in messages. This is probably creating problems for arm32 architecture.The text was updated successfully, but these errors were encountered: