Commit 9f4c1956d45faf80ffda071e86f714eae73b9a4d

Authored by gperson
1 parent e90606c9

recorrection de soucis deja commit auparavent, soucis de git

src/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/PINGUI/Joystick.h
... ... @@ -141,7 +141,7 @@
141 141 adc_init(joy_X_ADC);
142 142 uint8_t Xquatrebits = adc_read();
143 143 Xquatrebits&=0xF0; //pour les quatres bits de poids fort pour axe X
144   - adc_int(joy_Y_ADC);
  144 + adc_init(joy_Y_ADC);
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
... ...