logo

qmk_firmware

custom branch of QMK firmware git clone https://anongit.hacktivis.me/git/qmk_firmware.git

config.h (524B)


  1. // Copyright 2020-2023 alin m elena (@alinelena)
  2. // SPDX-License-Identifier: GPL-2.0-or-later
  3. #pragma once
  4. #define LED_RSE_PIN B13
  5. #define LED_LWR_PIN B12
  6. #define EEPROM_PAGE_SIZE
  7. #define FEE_PAGE_SIZE 0x800
  8. #define FEE_PAGE_COUNT 4
  9. #define FEE_MCU_FLASH_SIZE_IGNORE_CHECK
  10. #define FEE_MCU_FLASH_SIZE \
  11. ({ \
  12. uint16_t flash_size = *(uint16_t*)FLASHSIZE_BASE; \
  13. (flash_size <= 512) ? flash_size : 512; \
  14. })