* fix: move more Vial keymaps to intended folders * fix: builds * fix: libra_mini * fix: pull upstream changes for binepad/bn009 * fix: velocifire/sun20pro * fix: ekow/akira --------- Co-authored-by: Vino Rodrigues <366673+vinorodrigues@users.noreply.github.com>
13 lines
500 B
C
13 lines
500 B
C
// Copyright 2023 Binepad (@binepad)
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
|
|
/*
|
|
* Wear Leveling EEPROM Emulation
|
|
*/
|
|
|
|
#define WEAR_LEVELING_LOGICAL_SIZE 2048 // Number of bytes "exposed" to the rest of QMK and denotes the size of the usable EEPROM.
|
|
#define WEAR_LEVELING_BACKING_SIZE (WEAR_LEVELING_LOGICAL_SIZE * 2) // Number of bytes used by the wear-leveling algorithm for its underlying storage, and needs to be a multiple of the logical size.
|