1# Copyright (c) 2021 Piotr Mienkowski
2# SPDX-License-Identifier: Apache-2.0
3
4# Workaround for not being able to have commas in macro arguments
5DT_COMPAT_ATMEL_SAM_TC := atmel,sam-tc
6
7config COUNTER_SAM_TC
8	bool "Atmel SAM MCU family counter (TC) driver"
9	default $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_TC))
10	depends on SOC_FAMILY_SAM
11	help
12	  Enable the Atmel SAM MCU family counter (TC) driver.
13