1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-26 23:11:19 +01:00
RIOT/cpu/arm7tdmi_gba/include/periph_cpu.h
2025-09-04 17:59:12 +02:00

35 lines
457 B
C

/*
* SPDX-FileCopyrightText: 2023 HAW Hamburg
* SPDX-License-Identifier: LGPL-2.1-only
*/
#pragma once
/**
* @ingroup cpu_arm7tdmi_gba
* @{
*
* @file
* @brief CPU specific definitions for internal peripheral handling
*
* @author
*/
#include <stdint.h>
#ifdef __cplusplus
extern "C"
{
#endif
/**
* @brief Clock configuration
*/
#define CLOCK_CORECLOCK (16780000U) /* 16.78MHz */
#ifdef __cplusplus
}
#endif
/** @} */