Update readme

This commit is contained in:
VeyPatch 2024-12-11 15:12:10 +01:00
parent ad0253071f
commit 558034e5c7
3 changed files with 10 additions and 2 deletions

View file

@ -1,5 +1,7 @@
CURRENT_DIR := $(dir $(realpath $(lastword $(MAKEFILE_LIST))))
ERR_COLOR = $(strip $(call make_std_color,1))
SRC += halcyon.c
LTO_ENABLE ?= yes
@ -30,5 +32,5 @@ endif
HLC_OPTIONS := $(HLC_NONE) $(HLC_CIRQUE_TRACKPAD) $(HLC_ENCODER) $(HLC_TFT_DISPLAY)
ifeq ($(filter 1, $(HLC_OPTIONS)), )
$(error Wrong or no module specified. Please specify one of the following: HLC_NONE, HLC_CIRQUE_TRACKPAD, HLC_ENCODER or HLC_TFT_DISPLAY.)
$(error Halcyon_modules used but wrong or no module specified. Please specify one by adding `-e <module_name>=1` to your compile command where <module_name> can be: HLC_NONE, HLC_CIRQUE_TRACKPAD, HLC_ENCODER or HLC_TFT_DISPLAY)
endif