aboutsummaryrefslogtreecommitdiffstats
path: root/Projects/AVRISP/Lib/PDIProtocol.c
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2009-12-16 03:17:18 +0000
committerDean Camera <dean@fourwalledcubicle.com>2009-12-16 03:17:18 +0000
commit461607020c443b4be5e59f38e26d33908aa0f326 (patch)
treedd469a8d19b0b47ded244a3cae223e304a06d6e8 /Projects/AVRISP/Lib/PDIProtocol.c
parent4f74075fad7f1e7a35d04ff534d9d6a57d2b97fc (diff)
downloadlufa-461607020c443b4be5e59f38e26d33908aa0f326.tar.gz
lufa-461607020c443b4be5e59f38e26d33908aa0f326.tar.bz2
lufa-461607020c443b4be5e59f38e26d33908aa0f326.zip
Use default NVM base address in the AVRISP programmer project in case the host programmer software doesn't set it correctly.
Diffstat (limited to 'Projects/AVRISP/Lib/PDIProtocol.c')
-rw-r--r--Projects/AVRISP/Lib/PDIProtocol.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Projects/AVRISP/Lib/PDIProtocol.c b/Projects/AVRISP/Lib/PDIProtocol.c
index 1b3fc53c4..43370c730 100644
--- a/Projects/AVRISP/Lib/PDIProtocol.c
+++ b/Projects/AVRISP/Lib/PDIProtocol.c
@@ -38,7 +38,7 @@
#if defined(ENABLE_PDI_PROTOCOL) || defined(__DOXYGEN__)
/** Base absolute address for the target's NVM controller */
-uint32_t XPROG_Param_NVMBase;
+uint32_t XPROG_Param_NVMBase = 0x010001C0;
/** Size in bytes of the target's EEPROM page */
uint32_t XPROG_Param_EEPageSize;