Kconfig.tinycbor 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. # Copyright (c) 2018 Intel Corporation
  2. # SPDX-License-Identifier: Apache-2.0
  3. config TINYCBOR
  4. bool "tinyCBOR Support"
  5. help
  6. This option enables the tinyCBOR library.
  7. if TINYCBOR
  8. config CBOR_ENCODER_NO_CHECK_USER
  9. bool "No encoder checks for user args for validity"
  10. help
  11. This option specifies whether a check user exists for a cbor encoder.
  12. config CBOR_PARSER_MAX_RECURSIONS
  13. int "Parser max recursions"
  14. default 1024
  15. help
  16. This option specifies max recursions for the parser.
  17. config CBOR_PARSER_NO_STRICT_CHECKS
  18. bool "No strict parser checks"
  19. help
  20. This option enables the strict parser checks.
  21. config CBOR_FLOATING_POINT
  22. bool "Floating point support"
  23. select REQUIRES_FULL_LIBC
  24. help
  25. This option enables floating point support.
  26. config CBOR_HALF_FLOAT_TYPE
  27. bool "Half float type support"
  28. select REQUIRES_FULL_LIBC
  29. help
  30. This option enables half float type support.
  31. config CBOR_WITHOUT_OPEN_MEMSTREAM
  32. bool "Without open memstream"
  33. default y
  34. help
  35. This option enables open memstream support.
  36. config CBOR_PRETTY_PRINTING
  37. bool "Implement pretty printing functionality"
  38. help
  39. This option enables cbor_value_to_pretty_stream function.
  40. endif # TINYCBOR