aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Drivers/USB/Core/UC3/Device_UC3.h
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2011-04-08 05:40:25 +0000
committerDean Camera <dean@fourwalledcubicle.com>2011-04-08 05:40:25 +0000
commitc263ea837ae7e3c0e963b798afdffd501790ce2c (patch)
treea899d943856b48f6889cf1fe9f5b97ccc58ca598 /LUFA/Drivers/USB/Core/UC3/Device_UC3.h
parentde9bd767dc8578a45a195fb1e37dd4ff26ae9567 (diff)
downloadlufa-c263ea837ae7e3c0e963b798afdffd501790ce2c.tar.gz
lufa-c263ea837ae7e3c0e963b798afdffd501790ce2c.tar.bz2
lufa-c263ea837ae7e3c0e963b798afdffd501790ce2c.zip
Move global interrupt enable/disable functions out to Common.h and document them.
Diffstat (limited to 'LUFA/Drivers/USB/Core/UC3/Device_UC3.h')
-rw-r--r--LUFA/Drivers/USB/Core/UC3/Device_UC3.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/LUFA/Drivers/USB/Core/UC3/Device_UC3.h b/LUFA/Drivers/USB/Core/UC3/Device_UC3.h
index 150b18860..2a029bf08 100644
--- a/LUFA/Drivers/USB/Core/UC3/Device_UC3.h
+++ b/LUFA/Drivers/USB/Core/UC3/Device_UC3.h
@@ -187,8 +187,8 @@
static inline void USB_Device_GetSerialString(uint16_t* UnicodeString)
{
- uint_reg_t CurrentGlobalInt = USB_INT_GetGlobalEnableState();
- USB_INT_GlobalDisable();
+ uint_reg_t CurrentGlobalInt = GetGlobalInterruptMask();
+ GlobalInterruptDisable();
uint8_t* SigReadAddress = (uint8_t*)0x80800204;
@@ -208,7 +208,7 @@
(('A' - 10) + SerialByte) : ('0' + SerialByte));
}
- USB_INT_SetGlobalEnableState(CurrentGlobalInt);
+ SetGlobalInterruptMask(CurrentGlobalInt);
}
#endif