mirror of
				https://github.com/mfulz/qmk_firmware.git
				synced 2025-10-30 21:02:32 +01:00 
			
		
		
		
	 f81b0e35a6
			
		
	
	
		f81b0e35a6
		
			
		
	
	
	
	
		
			
			* Use pathlib everywhere we can * Improvements based on @erovia's feedback * rework qmk compile and qmk flash to use pathlib * style * Remove the subcommand_name argument from find_keyboard_keymap() * add experimental decorators * Create decorators for finding keyboard and keymap based on current directory. Decorators were inspired by @Erovia's brilliant work on the proof of concept.
		
			
				
	
	
		
			64 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			64 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
| """Helper functions for commands.
 | |
| """
 | |
| import json
 | |
| 
 | |
| import qmk.keymap
 | |
| 
 | |
| 
 | |
| def create_make_command(keyboard, keymap, target=None):
 | |
|     """Create a make compile command
 | |
| 
 | |
|     Args:
 | |
| 
 | |
|         keyboard
 | |
|             The path of the keyboard, for example 'plank'
 | |
| 
 | |
|         keymap
 | |
|             The name of the keymap, for example 'algernon'
 | |
| 
 | |
|         target
 | |
|             Usually a bootloader.
 | |
| 
 | |
|     Returns:
 | |
| 
 | |
|         A command that can be run to make the specified keyboard and keymap
 | |
|     """
 | |
|     make_args = [keyboard, keymap]
 | |
| 
 | |
|     if target:
 | |
|         make_args.append(target)
 | |
| 
 | |
|     return ['make', ':'.join(make_args)]
 | |
| 
 | |
| 
 | |
| def compile_configurator_json(user_keymap, bootloader=None):
 | |
|     """Convert a configurator export JSON file into a C file
 | |
| 
 | |
|     Args:
 | |
| 
 | |
|         configurator_filename
 | |
|             The configurator JSON export file
 | |
| 
 | |
|         bootloader
 | |
|             A bootloader to flash
 | |
| 
 | |
|     Returns:
 | |
| 
 | |
|         A command to run to compile and flash the C file.
 | |
|     """
 | |
|     # Write the keymap C file
 | |
|     qmk.keymap.write(user_keymap['keyboard'], user_keymap['keymap'], user_keymap['layout'], user_keymap['layers'])
 | |
| 
 | |
|     # Return a command that can be run to make the keymap and flash if given
 | |
|     if bootloader is None:
 | |
|         return create_make_command(user_keymap['keyboard'], user_keymap['keymap'])
 | |
|     return create_make_command(user_keymap['keyboard'], user_keymap['keymap'], bootloader)
 | |
| 
 | |
| 
 | |
| def parse_configurator_json(configurator_file):
 | |
|     """Open and parse a configurator json export
 | |
|     """
 | |
|     user_keymap = json.load(configurator_file)
 | |
| 
 | |
|     return user_keymap
 |