diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2009-12-15 00:58:22 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2009-12-15 00:58:22 +0000 |
commit | 8ea051de637f09f0fd2895f5a18ee9f337b9b1f1 (patch) | |
tree | c9f2ea264bce8fd561572d530e0249a2288aef5e /Projects/AVRISP/Lib/NVMTarget.h | |
parent | a7880ac1cdbfe8ddaf957173bc08f334aad8bca7 (diff) | |
download | lufa-8ea051de637f09f0fd2895f5a18ee9f337b9b1f1.tar.gz lufa-8ea051de637f09f0fd2895f5a18ee9f337b9b1f1.tar.bz2 lufa-8ea051de637f09f0fd2895f5a18ee9f337b9b1f1.zip |
Add Lock/Fuse byte programming support to the AVRISP PDI programming protocol code.
Diffstat (limited to 'Projects/AVRISP/Lib/NVMTarget.h')
-rw-r--r-- | Projects/AVRISP/Lib/NVMTarget.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Projects/AVRISP/Lib/NVMTarget.h b/Projects/AVRISP/Lib/NVMTarget.h index dae55ed12..dea9ff3de 100644 --- a/Projects/AVRISP/Lib/NVMTarget.h +++ b/Projects/AVRISP/Lib/NVMTarget.h @@ -111,6 +111,8 @@ bool NVMTarget_WaitWhileNVMControllerBusy(void);
bool NVMTarget_GetMemoryCRC(uint8_t CRCCommand, uint32_t* CRCDest);
bool NVMTarget_ReadMemory(uint32_t ReadAddress, uint8_t* ReadBuffer, uint16_t ReadSize);
+ bool NVMTarget_WriteByteMemory(uint8_t WriteCommand, uint32_t WriteAddress, uint8_t* WriteBuffer,
+ uint16_t WriteSize);
bool NVMTarget_EraseMemory(uint8_t EraseCommand, uint32_t Address);
#endif
|