Commit a072f3c2d8dcc5da701376797c72bf07689de26d
1 parent
9d00e40d
On ajoute les fichiers que j'ai oublié (encore ) de commit
Showing
2 changed files
with
2 additions
and
2 deletions
Show diff stats
src/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/PINGUI/Buttons.h
... | ... | @@ -222,7 +222,7 @@ |
222 | 222 | static inline uint8_t Buttons_GetStatus_HAUT(void) ATTR_WARN_UNUSED_RESULT; |
223 | 223 | static inline uint8_t Buttons_GetStatus_HAUT(void) |
224 | 224 | { |
225 | - return ((PINF & BUTTONS_HAUT) ^ BUTTONS_HAUT); | |
225 | + return (PINF & BUTTONS_HAUT) ; | |
226 | 226 | } |
227 | 227 | |
228 | 228 | ... | ... |
src/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/PINGUI/Joystick.h
... | ... | @@ -145,7 +145,7 @@ |
145 | 145 | uint8_t Yquatrebits = adc_read(); |
146 | 146 | Yquatrebits&=0xF0; |
147 | 147 | Yquatrebits=Yquatrebits>>4; //pour les quatres bits de poids faible pour axe Y, on place en fort et on decale de 4 bits into le poids faible |
148 | - return (uint8_t)(Xquatrebits+Yquatrebits); | |
148 | + return (uint8_t)(Xquatrebits|Yquatrebits); | |
149 | 149 | } |
150 | 150 | #endif |
151 | 151 | ... | ... |