1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/cpu/atmega8/Kconfig
Hugues Larrive 064c799e57 cpu/atmega_common: some additional periph drivers fixed for atmega8 cpu
- periph/eeprom.c
- periph/wdt.c
- periph/gpio_ll_irq.c

removed unsupported cpuid and dpgpin feature for atmega8 cpu familly

pkg/qdsa: bump the commit hash bump the commit hash after RIOT-OS/qDSA#4
was merged
2023-07-11 21:22:02 +02:00

35 lines
738 B
Plaintext

# Copyright (c) 2020 HAW Hamburg
#
# 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.
#
config CPU_FAM_ATMEGA8
bool
select CPU_COMMON_ATMEGA
## CPU Models
config CPU_MODEL_ATMEGA8
bool
select CPU_FAM_ATMEGA8
select HAS_CPU_ATMEGA8
## Definition of specific features
config HAS_CPU_ATMEGA8
bool
help
Indicates that an 'atmega8' cpu is being used.
## Common CPU symbols
config CPU_FAM
default "atmega8" if CPU_FAM_ATMEGA8
config CPU_MODEL
default "atmega8" if CPU_MODEL_ATMEGA8
config CPU
default "atmega8" if CPU_FAM_ATMEGA8
source "$(RIOTCPU)/atmega_common/Kconfig"