:orphan: .. title:: CONFIG_ISOTP_TX_BUF_COUNT .. kconfig:: CONFIG_ISOTP_TX_BUF_COUNT CONFIG_ISOTP_TX_BUF_COUNT ######################### *Number of data buffers for sending data* Type: ``int`` Help ==== .. code-block:: none Each data buffer will occupy CONFIG_NET_BUF_DATA_SIZE + smallish header (sizeof(struct net_buf)) amount of data. If context buffers are used, use the same size here. Direct dependencies =================== \ :kconfig:`ISOTP_USE_TX_BUF ` && \ :kconfig:`ISOTP ` *(Includes any dependencies from ifs and menus.)* Default ======= - 4 Kconfig definition ================== At ``/canbus/isotp/Kconfig:100`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:44`` → ``/Kconfig:11`` → ``/canbus/Kconfig:9`` Menu path: (Top) → Sub Systems and OS Services → Controller Area Network (CAN) bus subsystem → ISO-TP Transport [EXPERIMENTAL] → Buffer tx writes .. code-block:: kconfig config ISOTP_TX_BUF_COUNT int "Number of data buffers for sending data" default 4 depends on ISOTP_USE_TX_BUF && ISOTP help Each data buffer will occupy CONFIG_NET_BUF_DATA_SIZE + smallish header (sizeof(struct net_buf)) amount of data. If context buffers are used, use the same size here. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*