 2b00b846dc
			
		
	
	
		2b00b846dc
		
			
		
	
	
	
	
		
			
			* First batch of eeconfig conversions. * Offset and length for datablocks. * `via`, `dynamic_keymap`. * Fix filename. * Commentary. * wilba leds * satisfaction75 * satisfaction75 * more keyboard whack-a-mole * satisfaction75 * omnikeyish * more whack-a-mole * `generic_features.mk` to automatically pick up nvm repositories * thievery * deferred variable resolve * whitespace * convert api to structs/unions * convert api to structs/unions * convert api to structs/unions * fixups * code-side docs * code size fix * rollback * nvm_xxxxx_erase * Updated location of eeconfig magic numbers so non-EEPROM nvm drivers can use them too. * Fixup build. * Fixup compilation error with encoders. * Build fixes. * Add `via_ci` keymap to onekey to exercise VIA bindings (and thus dynamic keymap et.al.), fixup compilation errors based on preprocessor+sizeof. * Build failure rectification.
		
			
				
	
	
		
			74 lines
		
	
	
	
		
			3.9 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			74 lines
		
	
	
	
		
			3.9 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /* Copyright 2023 Cipulot
 | |
|  *
 | |
|  * This program is free software: you can redistribute it and/or modify
 | |
|  * it under the terms of the GNU General Public License as published by
 | |
|  * the Free Software Foundation, either version 3 of the License, or
 | |
|  * (at your option) any later version.
 | |
|  *
 | |
|  * This program is distributed in the hope that it will be useful,
 | |
|  * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | |
|  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | |
|  * GNU General Public License for more details.
 | |
|  *
 | |
|  * You should have received a copy of the GNU General Public License
 | |
|  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 | |
|  */
 | |
| 
 | |
| #include "ec_switch_matrix.h"
 | |
| #include "keyboard.h"
 | |
| 
 | |
| #ifdef SPLIT_KEYBOARD
 | |
| #    include "transactions.h"
 | |
| #endif
 | |
| 
 | |
| void eeconfig_init_kb(void) {
 | |
|     // Default values
 | |
|     eeprom_ec_config.actuation_mode                 = DEFAULT_ACTUATION_MODE;
 | |
|     eeprom_ec_config.mode_0_actuation_threshold     = DEFAULT_MODE_0_ACTUATION_LEVEL;
 | |
|     eeprom_ec_config.mode_0_release_threshold       = DEFAULT_MODE_0_RELEASE_LEVEL;
 | |
|     eeprom_ec_config.mode_1_initial_deadzone_offset = DEFAULT_MODE_1_INITIAL_DEADZONE_OFFSET;
 | |
|     eeprom_ec_config.mode_1_actuation_offset        = DEFAULT_MODE_1_ACTUATION_OFFSET;
 | |
|     eeprom_ec_config.mode_1_release_offset          = DEFAULT_MODE_1_RELEASE_OFFSET;
 | |
| 
 | |
|     for (uint8_t row = 0; row < MATRIX_ROWS; row++) {
 | |
|         for (uint8_t col = 0; col < MATRIX_COLS; col++) {
 | |
|             eeprom_ec_config.bottoming_reading[row][col] = DEFAULT_BOTTOMING_READING;
 | |
|         }
 | |
|     }
 | |
|     // Write default value to EEPROM now
 | |
|     eeconfig_update_kb_datablock(&eeprom_ec_config, 0, EECONFIG_KB_DATA_SIZE);
 | |
| 
 | |
|     eeconfig_init_user();
 | |
| }
 | |
| 
 | |
| // On Keyboard startup
 | |
| void keyboard_post_init_kb(void) {
 | |
|     // Read custom menu variables from memory
 | |
|     eeconfig_read_kb_datablock(&eeprom_ec_config, 0, EECONFIG_KB_DATA_SIZE);
 | |
| 
 | |
|     // Set runtime values to EEPROM values
 | |
|     ec_config.actuation_mode                 = eeprom_ec_config.actuation_mode;
 | |
|     ec_config.mode_0_actuation_threshold     = eeprom_ec_config.mode_0_actuation_threshold;
 | |
|     ec_config.mode_0_release_threshold       = eeprom_ec_config.mode_0_release_threshold;
 | |
|     ec_config.mode_1_initial_deadzone_offset = eeprom_ec_config.mode_1_initial_deadzone_offset;
 | |
|     ec_config.mode_1_actuation_offset        = eeprom_ec_config.mode_1_actuation_offset;
 | |
|     ec_config.mode_1_release_offset          = eeprom_ec_config.mode_1_release_offset;
 | |
|     ec_config.bottoming_calibration          = false;
 | |
|     for (uint8_t row = 0; row < MATRIX_ROWS; row++) {
 | |
|         for (uint8_t col = 0; col < MATRIX_COLS; col++) {
 | |
|             ec_config.bottoming_calibration_starter[row][col]           = true;
 | |
|             ec_config.bottoming_reading[row][col]                       = eeprom_ec_config.bottoming_reading[row][col];
 | |
|             ec_config.rescaled_mode_0_actuation_threshold[row][col]     = rescale(ec_config.mode_0_actuation_threshold, 0, 1023, ec_config.noise_floor[row][col], eeprom_ec_config.bottoming_reading[row][col]);
 | |
|             ec_config.rescaled_mode_0_release_threshold[row][col]       = rescale(ec_config.mode_0_release_threshold, 0, 1023, ec_config.noise_floor[row][col], eeprom_ec_config.bottoming_reading[row][col]);
 | |
|             ec_config.rescaled_mode_1_initial_deadzone_offset[row][col] = rescale(ec_config.mode_1_initial_deadzone_offset, 0, 1023, ec_config.noise_floor[row][col], eeprom_ec_config.bottoming_reading[row][col]);
 | |
|             ec_config.rescaled_mode_1_actuation_offset[row][col]        = rescale(ec_config.mode_1_actuation_offset, 0, 1023, ec_config.noise_floor[row][col], eeprom_ec_config.bottoming_reading[row][col]);
 | |
|             ec_config.rescaled_mode_1_release_offset[row][col]          = rescale(ec_config.mode_1_release_offset, 0, 1023, ec_config.noise_floor[row][col], eeprom_ec_config.bottoming_reading[row][col]);
 | |
|         }
 | |
|     }
 | |
| 
 | |
| #ifdef SPLIT_KEYBOARD
 | |
|     transaction_register_rpc(RPC_ID_VIA_CMD, via_cmd_slave_handler);
 | |
| #endif
 | |
| 
 | |
|     keyboard_post_init_user();
 | |
| }
 |