Home
last modified time | relevance | path

Searched refs:src (Results 1 – 14 of 14) sorted by relevance

/zcbor-latest/samples/pet/
Dpet.cmake13 ${CMAKE_CURRENT_LIST_DIR}/../../src/zcbor_decode.c
14 ${CMAKE_CURRENT_LIST_DIR}/../../src/zcbor_encode.c
15 ${CMAKE_CURRENT_LIST_DIR}/../../src/zcbor_common.c
16 ${CMAKE_CURRENT_LIST_DIR}/../../src/zcbor_print.c
17 ${CMAKE_CURRENT_LIST_DIR}/src/pet_decode.c
18 ${CMAKE_CURRENT_LIST_DIR}/src/pet_encode.c
DREADME.md11 The generated code is found in [src](src) and [include](include).
15 To change the output for the second and third, change the code in [src/main.c](src/main.c).
DCMakeLists.txt21 … # ${CMAKE_CURRENT_LIST_DIR}/src and ${CMAKE_CURRENT_LIST_DIR}/include)
44 add_executable(app src/main.c)
/zcbor-latest/samples/hello_world/
DCMakeLists.txt10 set(zcbor_src ../../src)
12 src/main.c
/zcbor-latest/tests/decode/test3_simple/
DCMakeLists.txt33 --oc ${PROJECT_BINARY_DIR}/src/serial/serial_recovery_decode.c
53 FILE(GLOB build_sources ${CMAKE_CURRENT_LIST_DIR}/../../../src/*.c)
57 zephyr_sources(${PROJECT_BINARY_DIR}/src/serial/serial_recovery_decode.c
/zcbor-latest/tests/cmake/
Dtest_template.cmake1 FILE(GLOB app_sources src/*.c)
2 FILE(GLOB app_sources_cpp src/*.cpp)
/zcbor-latest/
Dpyproject.toml38 packages = ['zcbor', 'zcbor.src', 'zcbor.include', 'zcbor.zcbor']
42 zcbor = ['src/*', 'include/*', 'zcbor/*']
DREADME.md57 The CBOR library can be found in [include/](include) and [src/](src) and can be used directly, by i…
67 …_STATE_*()` macros, look below or in the [hello_world](samples/hello_world/src/main.c) sample for …
214 …directly, see the [hello_world](samples/hello_world/src/main.c) sample, or the [pet](samples/pet/s…
216 To see how to use code generation, see the [pet](samples/pet/src/main.c) sample.
404 …overy mechanism](https://github.com/mcu-tools/mcuboot/blob/main/boot/boot_serial/src/boot_serial.c)
405 …ps://github.com/zephyrproject-rtos/zephyr/blob/main/subsys/mgmt/mcumgr/grp/img_mgmt/src/img_mgmt.c)
407 …update mechanism](https://github.com/nrfconnect/sdk-nrf/blob/main/subsys/mgmt/fmfu/src/fmfu_mgmt.c)
485 --output-cmake file. A 'src' directory will be created
DRELEASE_NOTES.md146 * src: Abstract float16 conversion and move it to zcbor_common.c
431 * src: Fix code so it builds correctly with asserts enabled.
438 * src: Fix code to build with `-Wpedantic` and `-Wconversion`.
/zcbor-latest/tests/decode/test5_corner_cases/
DCMakeLists.txt19 --output-c ${PROJECT_BINARY_DIR}/src/corner_cases.c
78 FILE(GLOB build_sources ${PROJECT_BINARY_DIR}/src/*.c)
/zcbor-latest/tests/unit/test2_cpp/
DCMakeLists.txt13 FILE(GLOB zcbor_sources ../../../src/*.c)
/zcbor-latest/tests/unit/test1_unit_tests/
DCMakeLists.txt13 FILE(GLOB zcbor_sources ../../../src/*.c)
/zcbor-latest/tests/unit/test3_float16/
DCMakeLists.txt14 FILE(GLOB zcbor_sources ../../../src/*.c)
/zcbor-latest/src/
Dzcbor_decode.c94 static void endian_copy(uint8_t *dst, const uint8_t *src, size_t src_len) in endian_copy() argument
97 memcpy(dst, src, src_len); in endian_copy()
100 dst[i] = src[src_len - 1 - i]; in endian_copy()