# Copyright (C) Frickly Systems GmbH
# Copyright (C) MBition GmbH
#
# SPDX-License-Identifier: Apache-2.0

menuconfig MODULE_ISO14229_EXTERNAL
  bool "ISO14229 Library"
  default n
  depends on CAN
	depends on STD_C11 || STD_C17 || STD_C23

if MODULE_ISO14229_EXTERNAL

  module = MODULE_ISO14229_EXTERNAL
  module-str = External ISO14229 Library
  source "subsys/logging/Kconfig.template.log_config"

  config ISO_TP_DEFAULT_BLOCK_SIZE
    int "Default block size for consecutive frames"
    default 8
    help
      Number of consecutive frames the driver/application can buffer before a flow control message is sent

endif
