Make AVRISP XPROG function parameters const where possible.

This commit is contained in:
Dean Camera 2010-02-01 05:34:59 +00:00
parent 5f363996e3
commit 9e7ffcb014
5 changed files with 9 additions and 10 deletions

View file

@ -68,8 +68,8 @@
bool TINYNVM_EraseMemory(void);
#if defined(INCLUDE_FROM_TINYNVM_C)
static void TINYNVM_SendReadNVMRegister(uint8_t Address);
static void TINYNVM_SendWriteNVMRegister(uint8_t Address);
static void TINYNVM_SendReadNVMRegister(const uint8_t Address);
static void TINYNVM_SendWriteNVMRegister(const uint8_t Address);
static void TINYNVM_SendPointerAddress(const uint16_t AbsoluteAddress);
#endif