aboutsummaryrefslogtreecommitdiffstats
path: root/Projects/Incomplete/StandaloneProgrammer/Lib/DataflashManager.h
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2010-04-18 12:10:30 +0000
committerDean Camera <dean@fourwalledcubicle.com>2010-04-18 12:10:30 +0000
commitfc8e4837a936bb1b4bd19bdd54660878b3efe02c (patch)
treebc0cdb4c4a2e151f0aac4eb92a63f8d229bb82ff /Projects/Incomplete/StandaloneProgrammer/Lib/DataflashManager.h
parent55db57e1ede3c44a3b027cb442fa12e969b37f4b (diff)
downloadlufa-fc8e4837a936bb1b4bd19bdd54660878b3efe02c.tar.gz
lufa-fc8e4837a936bb1b4bd19bdd54660878b3efe02c.tar.bz2
lufa-fc8e4837a936bb1b4bd19bdd54660878b3efe02c.zip
Add const keyword to the demo function parameters where possible.
Diffstat (limited to 'Projects/Incomplete/StandaloneProgrammer/Lib/DataflashManager.h')
-rw-r--r--Projects/Incomplete/StandaloneProgrammer/Lib/DataflashManager.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Projects/Incomplete/StandaloneProgrammer/Lib/DataflashManager.h b/Projects/Incomplete/StandaloneProgrammer/Lib/DataflashManager.h
index 75311074c..a67f533d6 100644
--- a/Projects/Incomplete/StandaloneProgrammer/Lib/DataflashManager.h
+++ b/Projects/Incomplete/StandaloneProgrammer/Lib/DataflashManager.h
@@ -67,9 +67,9 @@
/* Function Prototypes: */
#if defined(USB_CAN_BE_DEVICE)
- void DataflashManager_WriteBlocks(USB_ClassInfo_MS_Device_t* MSInterfaceInfo, const uint32_t BlockAddress,
+ void DataflashManager_WriteBlocks(USB_ClassInfo_MS_Device_t* const MSInterfaceInfo, const uint32_t BlockAddress,
uint16_t TotalBlocks);
- void DataflashManager_ReadBlocks(USB_ClassInfo_MS_Device_t* MSInterfaceInfo, const uint32_t BlockAddress,
+ void DataflashManager_ReadBlocks(USB_ClassInfo_MS_Device_t* const MSInterfaceInfo, const uint32_t BlockAddress,
uint16_t TotalBlocks);
void DataflashManager_WriteBlocks_RAM(const uint32_t BlockAddress, uint16_t TotalBlocks,
const uint8_t* BufferPtr) ATTR_NON_NULL_PTR_ARG(3);