1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/cpu/arm7tdmi_gba/include/periph_cpu.h
2024-04-10 17:06:14 +02:00

39 lines
655 B
C

/*
* Copyright (C) 2023 HAW Hamburg. All rights reserved.
*
* This file is subject to the terms and conditions of the GNU Lesser
* General Public License v2.1. See the file LICENSE in the top level
* directory for more details.
*/
/**
* @ingroup cpu_arm7tdmi_gba
* @{
*
* @file
* @brief CPU specific definitions for internal peripheral handling
*
* @author
*/
#ifndef PERIPH_CPU_H
#define PERIPH_CPU_H
#include <stdint.h>
#ifdef __cplusplus
extern "C"
{
#endif
/**
* @brief Clock configuration
*/
#define CLOCK_CORECLOCK (16780000U) /* 16.78MHz */
#ifdef __cplusplus
}
#endif
#endif /* PERIPH_CPU_H */
/** @} */