qmk_firmware

QMK firmware for my keyboards (Corne, Sweep Ferris) and trackball (Ploopy Adept)
Log | Files | Refs | Submodules | LICENSE

_util.h (283B)


      1 // Copyright 2023 Nick Brassel (@tzarc)
      2 // SPDX-License-Identifier: GPL-2.0-or-later
      3 #pragma once
      4 
      5 // AVR can't actually run anything from RAM, so just no-op the define.
      6 #define RESIDENT_IN_RAM(funcname) funcname
      7 
      8 #if __has_include_next("_util.h")
      9 #    include_next "_util.h"
     10 #endif