Don't make EEPROM size assumptions with dynamic keymaps. (#16054)
* Don't make EEPROM size assumptions with dynamic keymaps. * Add support for checking against emulated flash, error out if someone attempts to build a board without specifying EEPROM size. * Reorder defines so that MCU is considered last. * Refactor EEPROM definitions for simplicity. * Fix max sizing of kabedon/kabedon980. * Fix max sizing of mechlovin/olly/jf. * Fix unit tests. * Review comments, add messages with values during build failures.
This commit is contained in:
		
							parent
							
								
									da5cb5fd6f
								
							
						
					
					
						commit
						e22efc037a
					
				
					 17 changed files with 185 additions and 153 deletions
				
			
		| 
						 | 
				
			
			@ -16,9 +16,7 @@
 | 
			
		|||
 | 
			
		||||
#include "eeprom.h"
 | 
			
		||||
 | 
			
		||||
#define EEPROM_SIZE 32
 | 
			
		||||
 | 
			
		||||
static uint8_t buffer[EEPROM_SIZE];
 | 
			
		||||
static uint8_t buffer[TOTAL_EEPROM_BYTE_COUNT];
 | 
			
		||||
 | 
			
		||||
uint8_t eeprom_read_byte(const uint8_t *addr) {
 | 
			
		||||
    uintptr_t offset = (uintptr_t)addr;
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue