projects
/
pub
/
USBasp.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Fixed incorrect HID interface class and subclass values in the Mouse and KeyboardMous...
[pub/USBasp.git]
/
Demos
/
OTG
/
TestApp
/
TestApp.c
diff --git
a/Demos/OTG/TestApp/TestApp.c
b/Demos/OTG/TestApp/TestApp.c
index
49fdf67
..
d5a7523
100644
(file)
--- a/
Demos/OTG/TestApp/TestApp.c
+++ b/
Demos/OTG/TestApp/TestApp.c
@@
-36,12
+36,6
@@
\r
#include "TestApp.h"
\r
\r
\r
#include "TestApp.h"
\r
\r
-/* Project Tags, for reading out using the ButtLoad project */
\r
-BUTTLOADTAG(ProjName, "LUFA Test App");
\r
-BUTTLOADTAG(BuildTime, __TIME__);
\r
-BUTTLOADTAG(BuildDate, __DATE__);
\r
-BUTTLOADTAG(LUFAVersion, "LUFA V" LUFA_VERSION_STRING);
\r
-
\r
/* Scheduler Task List */
\r
TASK_LIST
\r
{
\r
/* Scheduler Task List */
\r
TASK_LIST
\r
{
\r
@@
-136,7
+130,7
@@
TASK(TestApp_CheckTemp)
if (Scheduler_HasDelayElapsed(10000, &DelayCounter))
\r
{
\r
printf_P(PSTR("Current temperature: %d Degrees Celcius\r\n\r\n"),
\r
if (Scheduler_HasDelayElapsed(10000, &DelayCounter))
\r
{
\r
printf_P(PSTR("Current temperature: %d Degrees Celcius\r\n\r\n"),
\r
- (int)Temperature_GetTemperature());
\r
+ (int
8_t
)Temperature_GetTemperature());
\r
\r
/* Reset the delay counter, ready to count another 10000 tick interval */
\r
Scheduler_ResetDelay(&DelayCounter);
\r
\r
/* Reset the delay counter, ready to count another 10000 tick interval */
\r
Scheduler_ResetDelay(&DelayCounter);
\r