Files
BloomPatched/src/Targets/Microchip/AVR/AVR8/Family.hpp
Nav 3f1247ce74 Fixed issue with automatic config variant selection, where we were not properly handling XMEGA targets with the JTAG physical interface.
Also introduced new AVR8 families, for D series targets.
Also moved AVR family param outside of TargetParameters struct
2021-06-06 18:41:08 +01:00

15 lines
187 B
C++

#pragma once
namespace Bloom::Targets::Microchip::Avr::Avr8Bit
{
enum class Family: int
{
MEGA,
XMEGA,
TINY,
DB,
DA,
DD,
};
}