Function to update DWEN fuse bit on AVR8 targets, via the ISP interface

This commit is contained in:
Nav
2022-03-05 18:03:00 +00:00
parent 066c7a469f
commit 6fb940dd59
2 changed files with 182 additions and 0 deletions

View File

@@ -180,5 +180,13 @@ namespace Bloom::Targets::Microchip::Avr::Avr8Bit
* @return
*/
TargetSignature getId() override;
/**
* Updates the debugWire enable (DWEN) fuse bit on the AVR target.
*
* @param setFuse
* True to set the fuse, false to clear it.
*/
void updateDwenFuseBit(bool setFuse);
};
}