We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Example use case taken from the UWB's UCI specification:
enum MessageType: 3 { DATA = 0x00, COMMAND = 0x01, RESPONSE = 0x02, NOTIFICATION = 0x03, } packet UciPacket { message_type: MessageType, _body_ } packet UciControlPacket: UciPacket (message_type = COMMAND | RESPONSE | NOTIFICATION) { opcode: 8, _size_(_payload_): 8, _payload_, } packet UciDataPacket: UciPacket (message_type = DATA) { _size_(_payload_): 16, _payload_, }
In this example UciControlPacket covers multiple message types. It is not possible to describe this constraint using the exisiting syntax.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Example use case taken from the UWB's UCI specification:
In this example UciControlPacket covers multiple message types. It is not possible to describe this constraint using the exisiting syntax.
The text was updated successfully, but these errors were encountered: