CONFIG_NRF91_SOCKET_SEND_SPLIT_LARGE_BLOCKS

Split large blocks passed to send() or sendto()

Type: bool

Help

Workaround a limitation in the nRF91 modem firmware’s bsdlib implementation regarding return value for send() or sendto() calls larger than the module can handle. It should send the data up to the maximum, and return that as the return value. Instead, it returns error 22.

Direct dependencies

BSD_LIBRARY

(Includes any dependencies from ifs and menus.)

Default

  • n

Kconfig definition

At <nRF>/lib/bsdlib/Kconfig:36

Included via <Zephyr>/Kconfig:8<Zephyr>/Kconfig.zephyr:9<BuildDir>/Kconfig/Kconfig.modules:1<nRF>/Kconfig.nrf:26<nRF>/lib/Kconfig:11

Menu path: (Top) → Modules → Nordic nRF Connect → Libraries → BSD Library for nrf91 → Use BSD Socket library for IP/TLS/DTLS

config NRF91_SOCKET_SEND_SPLIT_LARGE_BLOCKS
    bool "Split large blocks passed to send() or sendto()"
    default n
    depends on BSD_LIBRARY
    help
      Workaround a limitation in the nRF91 modem firmware's bsdlib
      implementation regarding return value for send() or sendto()
      calls larger than the module can handle. It should send the data
      up to the maximum, and return that as the return value. Instead,
      it returns error 22.

(The ‘depends on’ condition includes propagated dependencies from ifs and menus.)