projects
/
pub
/
USBasp.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Add Doxygen documentation to the completed portions of the PDI programming protocol...
[pub/USBasp.git]
/
Demos
/
Device
/
LowLevel
/
Joystick
/
Joystick.c
diff --git
a/Demos/Device/LowLevel/Joystick/Joystick.c
b/Demos/Device/LowLevel/Joystick/Joystick.c
index
306baa9
..
aa5244c
100644
(file)
--- a/
Demos/Device/LowLevel/Joystick/Joystick.c
+++ b/
Demos/Device/LowLevel/Joystick/Joystick.c
@@
-37,7
+37,7
@@
#include "Joystick.h"
\r
\r
/** Main program entry point. This routine configures the hardware required by the application, then
\r
#include "Joystick.h"
\r
\r
/** Main program entry point. This routine configures the hardware required by the application, then
\r
- *
starts the scheduler to run the application tasks
.
\r
+ *
enters a loop to run the application tasks in sequence
.
\r
*/
\r
int main(void)
\r
{
\r
*/
\r
int main(void)
\r
{
\r
@@
-156,10
+156,10
@@
bool GetNextReport(USB_JoystickReport_Data_t* ReportData)
else if (JoyStatus_LCL & JOY_DOWN)
\r
ReportData->Y = 100;
\r
\r
else if (JoyStatus_LCL & JOY_DOWN)
\r
ReportData->Y = 100;
\r
\r
- if (JoyStatus_LCL & JOY_RIGHT)
\r
- ReportData->X = 100;
\r
- else if (JoyStatus_LCL & JOY_LEFT)
\r
+ if (JoyStatus_LCL & JOY_LEFT)
\r
ReportData->X = -100;
\r
ReportData->X = -100;
\r
+ else if (JoyStatus_LCL & JOY_RIGHT)
\r
+ ReportData->X = 100;
\r
\r
if (JoyStatus_LCL & JOY_PRESS)
\r
ReportData->Button = (1 << 1);
\r
\r
if (JoyStatus_LCL & JOY_PRESS)
\r
ReportData->Button = (1 << 1);
\r