/* * SPDX-FileCopyrightText: 2016 Kees Bakker, SODAQ * SPDX-License-Identifier: LGPL-2.1-only */ #pragma once /** * @ingroup boards_common_sodaq * @{ * * @file * @brief Default RTT configuration for SODAQ boards * * @author Kees Bakker */ #include #include "cpu.h" #include "periph_cpu.h" #ifdef __cplusplus extern "C" { #endif /** * @name RTT configuration * @{ */ #ifndef RTT_FREQUENCY #define RTT_FREQUENCY (32768U) /* in Hz. For changes see `rtt.c` */ #endif /** @} */ #ifdef __cplusplus } #endif /** @} */