aboutsummaryrefslogtreecommitdiffstats
path: root/Demos/OTG/TestApp/TestApp.c
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2009-04-16 23:59:14 +0000
committerDean Camera <dean@fourwalledcubicle.com>2009-04-16 23:59:14 +0000
commit1c16ae399a9f924c15d9dec54cacb1320ff0a92f (patch)
tree026174d2f65b998d9cb6b24156393fae40a0d60e /Demos/OTG/TestApp/TestApp.c
parent8f6b4ddf764c3a54e42d00a7502c82c5c3e71b1c (diff)
downloadlufa-1c16ae399a9f924c15d9dec54cacb1320ff0a92f.tar.gz
lufa-1c16ae399a9f924c15d9dec54cacb1320ff0a92f.tar.bz2
lufa-1c16ae399a9f924c15d9dec54cacb1320ff0a92f.zip
Partial commit: change references to Drivers/AT90USBXXX to Drivers/Peripheral.
Diffstat (limited to 'Demos/OTG/TestApp/TestApp.c')
-rw-r--r--Demos/OTG/TestApp/TestApp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Demos/OTG/TestApp/TestApp.c b/Demos/OTG/TestApp/TestApp.c
index e72c191b3..d5a752322 100644
--- a/Demos/OTG/TestApp/TestApp.c
+++ b/Demos/OTG/TestApp/TestApp.c
@@ -130,7 +130,7 @@ TASK(TestApp_CheckTemp)
if (Scheduler_HasDelayElapsed(10000, &DelayCounter))
{
printf_P(PSTR("Current temperature: %d Degrees Celcius\r\n\r\n"),
- (int)Temperature_GetTemperature());
+ (int8_t)Temperature_GetTemperature());
/* Reset the delay counter, ready to count another 10000 tick interval */
Scheduler_ResetDelay(&DelayCounter);