-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
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
Implemented Json to Tlv and Tlv to Json Converter in Kotlin #26458
Merged
andy31415
merged 1 commit into
project-chip:master
from
emargolis:emargolis/feature/kotlin-json-to-tlv-to-json-converter
May 10, 2023
Merged
Implemented Json to Tlv and Tlv to Json Converter in Kotlin #26458
andy31415
merged 1 commit into
project-chip:master
from
emargolis:emargolis/feature/kotlin-json-to-tlv-to-json-converter
May 10, 2023
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
emargolis
force-pushed
the
emargolis/feature/kotlin-json-to-tlv-to-json-converter
branch
from
May 9, 2023 20:37
ff2b6d2
to
46395b7
Compare
pullapprove
bot
requested review from
amitnj,
anush-apple,
arkq,
bzbarsky-apple,
carol-apple,
cecille,
chrisdecenzo,
chshu,
chulspro,
cliffamzn,
CodeChronos928,
Damian-Nordic,
dhrishi,
electrocucaracha,
franck-apple,
gjc13,
harsha-rajendran,
hawk248,
jelderton,
jepenven-silabs,
jmartinez-silabs,
jmeg-sfy,
joonhaengHeo,
jtung-apple,
kkasperczyk-no,
ksperling-apple and
lazarkov
May 9, 2023 20:38
pullapprove
bot
requested review from
mlepage-google,
mrjerryjohns,
msandstedt,
mspang,
nivi-apple,
robszewczyk,
saurabhst,
selissia,
sharadb-amazon,
tcarmelveilleux,
tecimovic,
tehampson,
vijs,
vivien-apple,
woody-apple,
xylophone21,
younghak-hwang,
yufengwangca and
yunhanw-google
May 9, 2023 20:38
PR #26458: Size comparison from 7b5ecb2 to 46395b7 Decreases (2 builds for bl602, bl702)
Full report (9 builds for bl602, bl702, cc32xx, linux, qpg)
|
Note that NOT all TLV configurations are supported by the current implementation. Here is the list of limitations: - TLV Lists are not supported - Multi-Dimensional TLV Arrays are not supported - All elements of an array MUST be of the same type - The top level TLV element MUST be a single structure with AnonymousTag - The following tags are supported: - AnonymousTag are used only with TLV Arrays elements or a top-level structure - ContextSpecificTag are used only with TLV Structure elements - CommonProfileTag are used only with TLV Structure elements - Infinity Float/Double values are not supported
emargolis
force-pushed
the
emargolis/feature/kotlin-json-to-tlv-to-json-converter
branch
from
May 10, 2023 00:23
46395b7
to
f68541d
Compare
PR #26458: Size comparison from 7b5ecb2 to f68541d Decreases (1 build for cc32xx)
Full report (2 builds for cc32xx, mbed)
|
andy31415
approved these changes
May 10, 2023
bzbarsky-apple
added a commit
to bzbarsky-apple/connectedhomeip
that referenced
this pull request
May 10, 2023
…roject-chip#26458)" This reverts commit 60866e8. project-chip#26458 was merged with failing CI, and the failure is in the files the PR added. CI is now permanently failing.
emargolis
pushed a commit
that referenced
this pull request
May 11, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Note that NOT all TLV configurations are supported by the current implementation. Here is the list of limitations: