 cb6e1c1af5
			
		
	
	
		cb6e1c1af5
		
			
		
	
	
	
	
		
			
			* Add splitkb's Elora * WIP * Make requested changes * fix missing call to keyboard init user for elora * sync vial_qmk with qmk * Add fixes * Add encoder quadrature and update files * Update Readme * Implement changes * Remove encoder driver from keyboard.json * make requested changed * Implement changes and remove myriad_task as it wasn't actually doing anything. * Remove myriad.h from matrix.c * Simplify OLED code debug * Update RGB keycodes (qmk#24484) * remove rules.mk (qmk#23281) * Add matrix state sync --------- Co-authored-by: NapOli1084 <10320176+NapOli1084@users.noreply.github.com> Co-authored-by: harveysch <126267034+harvey-splitkb@users.noreply.github.com> Co-authored-by: harvey <harvey@splitkb.com> Co-authored-by: VeyPatch <126267034+VeyPatch@users.noreply.github.com>
		
			
				
	
	
		
			18 lines
		
	
	
	
		
			352 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
	
		
			352 B
		
	
	
	
		
			C
		
	
	
	
	
	
| // Copyright 2024 splitkb.com (support@splitkb.com)
 | |
| // SPDX-License-Identifier: GPL-2.0-or-later
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include_next <mcuconf.h>
 | |
| 
 | |
| #undef RP_SIO_USE_UART1
 | |
| #define RP_SIO_USE_UART1 TRUE
 | |
| 
 | |
| #undef RP_I2C_USE_I2C0
 | |
| #define RP_I2C_USE_I2C0 TRUE
 | |
| 
 | |
| #undef RP_SPI_USE_SPI1
 | |
| #define RP_SPI_USE_SPI1 TRUE
 | |
| 
 | |
| #undef RP_ADC_USE_ADC1
 | |
| #define RP_ADC_USE_ADC1 TRUE
 |