mirror of
https://github.com/zsa/qmk_firmware.git
synced 2026-05-07 11:59:00 +00:00
Fix TPI NVM Write handler -- AVRStudio sends out writes in page sized chunks, not byte sized chunks.
This commit is contained in:
@@ -65,7 +65,7 @@
|
||||
void TINYNVM_SendPointerAddress(const uint16_t AbsoluteAddress);
|
||||
bool TINYNVM_WaitWhileNVMBusBusy(void);
|
||||
bool TINYNVM_ReadMemory(const uint32_t ReadAddress, uint8_t* ReadBuffer, uint16_t ReadLength);
|
||||
bool TINYNVM_WriteMemory(const uint32_t WriteAddress, const uint8_t Byte);
|
||||
bool TINYNVM_WriteMemory(const uint32_t WriteAddress, const uint8_t* WriteBuffer, uint16_t WriteLength);
|
||||
bool TINYNVM_EraseMemory(void);
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user