[Keyboard] boardsource/equals (#21230)
Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: jack <0x6A73@pm.me>
This commit is contained in:
		
							parent
							
								
									48f096013b
								
							
						
					
					
						commit
						eb188bd4ee
					
				
					 23 changed files with 849 additions and 0 deletions
				
			
		
							
								
								
									
										19
									
								
								keyboards/boardsource/equals/equals.c
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										19
									
								
								keyboards/boardsource/equals/equals.c
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,19 @@
 | 
			
		|||
// Copyright 2023 @boardsource
 | 
			
		||||
// SPDX-License-Identifier: GPL-2.0-or-later
 | 
			
		||||
#include "quantum.h"
 | 
			
		||||
extern void ui_init(void);
 | 
			
		||||
extern void ui_task(void);
 | 
			
		||||
 | 
			
		||||
#ifdef QUANTUM_PAINTER_ENABLE
 | 
			
		||||
void keyboard_post_init_kb(void) {
 | 
			
		||||
    // Init the display
 | 
			
		||||
    ui_init();
 | 
			
		||||
    keyboard_post_init_user();
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
void housekeeping_task_kb(void) {
 | 
			
		||||
    // Draw the display
 | 
			
		||||
    ui_task();
 | 
			
		||||
    housekeeping_task_user();
 | 
			
		||||
}
 | 
			
		||||
#endif //QUANTUM_PAINTER_ENABLE
 | 
			
		||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue