aboutsummaryrefslogtreecommitdiffstats
path: root/Projects/AVRISP-MKII/Lib/ISP/ISPTarget.c
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2010-11-14 06:44:57 +0000
committerDean Camera <dean@fourwalledcubicle.com>2010-11-14 06:44:57 +0000
commitf2324fc2b4a926dc2db5d3e681a019949fe23342 (patch)
treec16061ed6c1a73174144789716220ec465c59e74 /Projects/AVRISP-MKII/Lib/ISP/ISPTarget.c
parentd41cd9a41aca81eaa21e65e6c53672fe604fa3d5 (diff)
downloadlufa-f2324fc2b4a926dc2db5d3e681a019949fe23342.tar.gz
lufa-f2324fc2b4a926dc2db5d3e681a019949fe23342.tar.bz2
lufa-f2324fc2b4a926dc2db5d3e681a019949fe23342.zip
Second patch to fix incorrect PDI/TPI programming speed.
Diffstat (limited to 'Projects/AVRISP-MKII/Lib/ISP/ISPTarget.c')
-rw-r--r--Projects/AVRISP-MKII/Lib/ISP/ISPTarget.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Projects/AVRISP-MKII/Lib/ISP/ISPTarget.c b/Projects/AVRISP-MKII/Lib/ISP/ISPTarget.c
index d315e9d1e..66a1c2560 100644
--- a/Projects/AVRISP-MKII/Lib/ISP/ISPTarget.c
+++ b/Projects/AVRISP-MKII/Lib/ISP/ISPTarget.c
@@ -142,7 +142,7 @@ ISR(TIMER1_COMPA_vect, ISR_BLOCK)
/** Initialises the appropriate SPI driver (hardware or software, depending on the selected ISP speed) ready for
* communication with the attached target.
*/
-void ISPTarget_Init(void)
+void ISPTarget_EnableTargetISP(void)
{
uint8_t SCKDuration = V2Params_GetParameterValue(PARAM_SCK_DURATION);
@@ -167,7 +167,7 @@ void ISPTarget_Init(void)
/** Shuts down the current selected SPI driver (hardware or software, depending on the selected ISP speed) so that no
* further communications can occur until the driver is re-initialized.
*/
-void ISPTarget_ShutDown(void)
+void ISPTarget_DisableTargetISP(void)
{
if (HardwareSPIMode)
{