logo

qmk_firmware

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

introspection.c (334B)


  1. // Copyright 2025 Nick Brassel (@tzarc)
  2. // SPDX-License-Identifier: GPL-2.0-or-later
  3. hello_world_introspection_t hello_world_introspection(void) {
  4. hello_world_introspection_t introspection = {
  5. .total_size = sizeof(keymaps),
  6. .layer_count = sizeof(keymaps) / sizeof(keymaps[0]),
  7. };
  8. return introspection;
  9. }