Skip to content

Commit

Permalink
Fixup builds. (#16596)
Browse files Browse the repository at this point in the history
  • Loading branch information
tzarc authored Mar 9, 2022
1 parent 5d67c4d commit 77180a6
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 8 deletions.
1 change: 1 addition & 0 deletions keyboards/horrortroll/handwired_k552/rules.mk
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow
AUDIO_ENABLE = no # Audio output
NO_USB_STARTUP_CHECK = yes
LTO_ENABLE = yes

# RGB Matrix enabled
RGB_MATRIX_ENABLE = yes
Expand Down
4 changes: 2 additions & 2 deletions keyboards/tkc/portico68v2/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
# define ENABLE_RGB_MATRIX_HUE_PENDULUM
# define ENABLE_RGB_MATRIX_HUE_WAVE
# define ENABLE_RGB_MATRIX_PIXEL_RAIN
# define ENABLE_RGB_MATRIX_PIXEL_FLOW
# define ENABLE_RGB_MATRIX_PIXEL_FRACTAL
//# define ENABLE_RGB_MATRIX_PIXEL_FLOW
//# define ENABLE_RGB_MATRIX_PIXEL_FRACTAL
// enabled only if RGB_MATRIX_FRAMEBUFFER_EFFECTS is defined
# define ENABLE_RGB_MATRIX_TYPING_HEATMAP
# define ENABLE_RGB_MATRIX_DIGITAL_RAIN
Expand Down
13 changes: 7 additions & 6 deletions quantum/action.c
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,13 @@ 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 <limits.h>

#ifdef DEBUG_ACTION
# include "debug.h"
#else
# include "nodebug.h"
#endif

#include "host.h"
#include "keycode.h"
#include "keyboard.h"
Expand All @@ -34,12 +41,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
# include "backlight.h"
#endif

#ifdef DEBUG_ACTION
# include "debug.h"
#else
# include "nodebug.h"
#endif

#ifdef POINTING_DEVICE_ENABLE
# include "pointing_device.h"
#endif
Expand Down

0 comments on commit 77180a6

Please sign in to comment.