/zcbor-latest/.github/workflows/ |
D | run-tests.yaml | 1 name: Run tests 20 …name: Merge test 1 - Twister (Ubuntu) (${{ matrix.platform }}${{ matrix.asserts != '' && ' with as… 22 - name: Checkout the code 25 - name: Install zcbor 28 - name: Prepare and run tests 41 …name: Merge test 1 - Twister (Windows) (${{ matrix.platform }}${{ matrix.asserts != '' && ' with a… 43 - name: Checkout the code 46 - name: Checkout Zephyr 54 - name: Install zcbor and pip dependencies 60 - name: Install ninja and 7zip [all …]
|
/zcbor-latest/.github/actions/prepare_and_run_tests/ |
D | action.yaml | 18 - name: Install packages 24 - name: Clone zephyr 34 - name: West init 42 - name: Install twister dependencies 50 - name: Install Zephyr SDK 60 - name: Install Zephyr SDK (ARM) 69 - name: Install Zephyr SDK (MIPS) 78 - name: Run Twister
|
/zcbor-latest/.github/actions/install_zcbor/ |
D | action.yaml | 10 - name: Install west and dependencies 17 - name: Install zcbor package 27 - name: Install zcbor package 33 - name: Install zcbor package
|
/zcbor-latest/samples/pet/ |
D | README.md | 33 > Name: Carrie Cat 37 > Name: Danny the Dog 41 > Name: Gary Giraffe
|
D | CMakeLists.txt | 32 -o ${PROJECT_BINARY_DIR}/include/pet1.h --c-code-var-name pet1
|
/zcbor-latest/ |
D | pyproject.toml | 12 name = 'zcbor' 27 authors = [{name = 'Nordic Semiconductor ASA'}] 28 maintainers = [{name = 'Øyvind Rønningstad', email = 'oyvind.ronningstad@nordicsemi.no'}]
|
D | MIGRATION_GUIDE.md | 14 …ments with a .size specifier, which might mean that these elements change name in your code when y… 28 * All enum (choice) names have now gained a ``_c`` suffix, so the enum name no longer matches 29 the corresponding member name exactly (because this broke C++ namespace rules).
|
D | README.md | 98 Name | Description 323 E.g. `Foo = [name: tstr, age: uint]` is equivalent to `Foo = [tstr, uint]`. 484 specified, the path and name will be based on the 487 there with the same name (except the file extension) 493 If not specified, the path and name will be based on 496 be placed there with the same name (except the file 501 and name will be taken from the output header file 502 (--output-h), with '_types' added to the file name. 507 file without '.cmake' is used as the name of the CMake 575 omitted, the format is inferred from the file name. [all …]
|
D | LICENSE | 46 separable from, or merely link (or bind by name) to the interfaces of, 186 file or class name and description of purpose be included on the 190 Copyright [yyyy] [name of copyright owner]
|
D | ARCHITECTURE.md | 59 For `"OTHER"`, `self.value` is a string with the name of the type it refers to. 79 The elements are on the form `<name>: <CddlParser object>`. 209 All functions (generated and not) have the same API structure: `bool <name>(zcbor_state_t *state, <…
|
/zcbor-latest/zcbor/ |
D | zcbor.py | 172 """Return the name of the struct argument for a given mode.""" 342 """Generate a (hopefully) unique and descriptive name""" 349 # Name a key/value pair by its key type or string value: 351 # Name a string by its expected value: 354 # Name an integer by its expected value: 357 # Name a type by its type name 359 # Name a control group by its name 361 # Name an instance by its type: 363 # Name a list by its first element: 366 # Name a cbor-encoded bstr by its expected cbor contents: [all …]
|
/zcbor-latest/tests/cases/ |
D | senml.cddl | 4 ? bn => tstr, ; Base Name 6 ? n => tstr, ; Name
|
D | pet.cddl | 11 name: [ names: +tstr ],
|
D | manifest16.cddl | 186 ? suit-text-vendor-name => tstr, 187 ? suit-text-model-name => tstr, 271 suit-text-vendor-name = 1 272 suit-text-model-name = 2
|
D | manifest20.cddl | 177 ? suit-text-vendor-name => tstr, 178 ? suit-text-model-name => tstr, 268 suit-text-vendor-name = 1 269 suit-text-model-name = 2
|
D | manifest14.cddl | 307 ? suit-text-vendor-name => tstr, 308 ? suit-text-model-name => tstr, 432 suit-text-vendor-name = 1 433 suit-text-model-name = 2
|
D | manifest12.cddl | 332 ? suit-text-vendor-name => tstr, 333 ? suit-text-model-name => tstr, 460 suit-text-vendor-name = 1 461 suit-text-model-name = 2
|
D | manifest9.cddl | 367 ? suit-text-vendor-name => tstr, 368 ? suit-text-model-name => tstr, 492 suit-text-vendor-name = 1 493 suit-text-model-name = 2
|
D | manifest2.cddl | 340 suit-text-vendor-name = 3 341 suit-text-model-name = 4
|
/zcbor-latest/include/ |
D | zcbor_encode.h | 33 * This gives you a state variable named @p name. The variable functions like 36 * @param[in] name The name of the new state variable. 42 #define ZCBOR_STATE_E(name, num_backups, payload, payload_size, elem_count) \ argument 43 zcbor_state_t name[((num_backups) + 2)]; \ 45 zcbor_new_encode_state(name, ZCBOR_ARRAY_SIZE(name), payload, payload_size, elem_count); \
|
D | zcbor_decode.h | 33 * This gives you a state variable named @p name. The variable functions like 36 * @param[in] name The name of the new state variable. 46 #define ZCBOR_STATE_D(name, num_backups, payload, payload_size, elem_count, n_flags) \ argument 47 zcbor_state_t name[((num_backups) + 2 + ZCBOR_FLAG_STATES(n_flags))]; \ 49 zcbor_new_decode_state(name, ZCBOR_ARRAY_SIZE(name), payload, payload_size, elem_count, \ 50 (uint8_t *)&name[(num_backups) + 1], ZCBOR_FLAG_STATES(n_flags) * sizeof(zcbor_state_t)); \
|
/zcbor-latest/zephyr/ |
D | module.yml | 1 name: zcbor
|
/zcbor-latest/tests/scripts/ |
D | test_repo_files.py | 113 for p in [f for f in files if "pet" in f.name]: 133 remote_tr_args = ['git', 'rev-parse', '--abbrev-ref', '--symbolic-full-name', '@{u}'] 184 link = path.name + m
|
/zcbor-latest/tests/decode/test9_manifest14/ |
D | CMakeLists.txt | 51 --c-code-var-name example0
|
/zcbor-latest/samples/pet/src/ |
D | main.c | 15 printf("Name:"); in print_pet()
|