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
In my specification i have something like this:
defVal INTEGER ::= 255 TestInt ::= INTEGER Test4Seq ::= SEQUENCE { a TestInt DEFAULT defVal }
which is valid ASN1 Syntax and default value of a in the sequence should be 255. But asn1tools does not set the default value.
Also when defining integer with named constant values, like this:
DeltaLongitude ::= INTEGER {oneMicrodegreeEast (10), oneMicrodegreeWest (-10), unavailable(131072)} (-131071..131072)
The values are not compiled from the asn1 specification either.
Is this known limitation or am I missing something in the asn1 code?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In my specification i have something like this:
which is valid ASN1 Syntax and default value of a in the sequence should be 255. But asn1tools does not set the default value.
Also when defining integer with named constant values, like this:
DeltaLongitude ::= INTEGER {oneMicrodegreeEast (10), oneMicrodegreeWest (-10), unavailable(131072)} (-131071..131072)
The values are not compiled from the asn1 specification either.
Is this known limitation or am I missing something in the asn1 code?
The text was updated successfully, but these errors were encountered: