Kconfig 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. # Copyright (c) 2021 Basalte bv
  2. # SPDX-License-Identifier: Apache-2.0
  3. config ZEPHYR_NANOPB_MODULE
  4. bool
  5. menuconfig NANOPB
  6. bool "Nanopb Support"
  7. help
  8. This option enables the Nanopb library and generator.
  9. if NANOPB
  10. config NANOPB_ENABLE_MALLOC
  11. bool "Enable malloc usage"
  12. help
  13. This option enables dynamic allocation support in the decoder.
  14. config NANOPB_MAX_REQUIRED_FIELDS
  15. int "Max number of required fields"
  16. default 64
  17. help
  18. Maximum number of proto2 required fields to check for presence.
  19. Default and minimum value is 64.
  20. config NANOPB_NO_ERRMSG
  21. bool "Disable error messages"
  22. help
  23. Disable error message support to save code size. Only error
  24. information is the true/false return value.
  25. config NANOPB_BUFFER_ONLY
  26. bool "Buffers only"
  27. help
  28. Disable support for custom streams. Only supports encoding and
  29. decoding with memory buffers. Speeds up execution and slightly
  30. decreases code size.
  31. config NANOPB_WITHOUT_64BIT
  32. bool "Disable 64-bit integer fields"
  33. help
  34. Disable support of 64-bit integer fields, for old compilers or
  35. for a slight speedup on 8-bit platforms.
  36. config NANOPB_ENCODE_ARRAYS_UNPACKED
  37. bool "Encode arrays unpacked"
  38. help
  39. Encode scalar arrays in the unpacked format, which takes up more
  40. space.
  41. Only to be used when the decoder on the receiving side cannot
  42. process packed arrays, such as protobuf.js versions before 2020.
  43. config NANOPB_VALIDATE_UTF8
  44. bool "Validate UTF-8"
  45. help
  46. Check whether incoming strings are valid UTF-8 sequences.
  47. Adds a small performance and code size penalty.
  48. endif # NANOPB