Renamed FuseBitDescriptor struct

This commit is contained in:
Nav
2022-03-05 14:08:27 +00:00
parent b50333c170
commit 72a557041a
3 changed files with 15 additions and 13 deletions

View File

@@ -19,18 +19,18 @@ namespace Bloom::Targets::Microchip::Avr
Fuse(FuseType type, std::uint8_t value): type(type), value(value) {}
};
struct FuseBitDescriptor
struct FuseBitsDescriptor
{
/**
* The type of the fuse byte in which the fuse bit resides.
* The type of the fuse byte in which the fuse bits resides.
*/
FuseType fuseType;
/**
* Fuse bit mask
* Fuse bits mask
*/
std::uint8_t bitMask;
FuseBitDescriptor(FuseType fuseType, std::uint8_t bitMask): fuseType(fuseType), bitMask(bitMask) {}
FuseBitsDescriptor(FuseType fuseType, std::uint8_t bitMask): fuseType(fuseType), bitMask(bitMask) {}
};
}