diff --git a/src/Targets/Microchip/AVR/Fuse.hpp b/src/Targets/Microchip/AVR/Fuse.hpp index 0d17f697..b2ef56fd 100644 --- a/src/Targets/Microchip/AVR/Fuse.hpp +++ b/src/Targets/Microchip/AVR/Fuse.hpp @@ -18,4 +18,17 @@ namespace Bloom::Targets::Microchip::Avr Fuse(FuseType type, std::uint8_t value): type(type), value(value) {} }; + + struct FuseBitDescriptor + { + /** + * The type of the fuse byte in which the fuse bit resides. + */ + FuseType fuseType; + + /** + * Fuse bit mask + */ + std::uint8_t bitMask; + }; }