Fix joystick compile issues (#9949)
This commit is contained in:
		
							parent
							
								
									e34eca361f
								
							
						
					
					
						commit
						12333b7c5e
					
				
					 3 changed files with 15 additions and 11 deletions
				
			
		| 
						 | 
				
			
			@ -1,3 +1,4 @@
 | 
			
		|||
#pragma once
 | 
			
		||||
 | 
			
		||||
#define JOYSTICK_AXES_COUNT 2
 | 
			
		||||
#define JOYSTICK_BUTTON_COUNT 1
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -7,19 +7,20 @@
 | 
			
		|||
#endif
 | 
			
		||||
 | 
			
		||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
 | 
			
		||||
  LAYOUT( JS_BUTTON0 )
 | 
			
		||||
    LAYOUT_ortho_1x1(JS_BUTTON0)
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
void matrix_scan_user() {
 | 
			
		||||
  int16_t val = (((uint32_t)timer_read()%5000 - 2500) * 255) / 5000;
 | 
			
		||||
  if (val != joystick_status.axes[1]) {
 | 
			
		||||
    joystick_status.axes[1] = val;
 | 
			
		||||
    joystick_status.status |= JS_UPDATED;
 | 
			
		||||
  }
 | 
			
		||||
    int16_t val = (((uint32_t)timer_read() % 5000 - 2500) * 255) / 5000;
 | 
			
		||||
 | 
			
		||||
    if (val != joystick_status.axes[1]) {
 | 
			
		||||
        joystick_status.axes[1] = val;
 | 
			
		||||
        joystick_status.status |= JS_UPDATED;
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
//joystick config
 | 
			
		||||
// Joystick config
 | 
			
		||||
joystick_config_t joystick_axes[JOYSTICK_AXES_COUNT] = {
 | 
			
		||||
    [0] = JOYSTICK_AXIS_IN(ADC_PIN, 0, 512, 1023)
 | 
			
		||||
  , [1] = JOYSTICK_AXIS_VIRTUAL
 | 
			
		||||
};
 | 
			
		||||
    [0] = JOYSTICK_AXIS_IN(ADC_PIN, 0, 512, 1023),
 | 
			
		||||
    [1] = JOYSTICK_AXIS_VIRTUAL
 | 
			
		||||
};
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue