16 lines
377 B
Makefile
16 lines
377 B
Makefile
|
#########################################
|
||
|
# Default define variables
|
||
|
#########################################
|
||
|
|
||
|
# Enable/disable debug output from HAL
|
||
|
ATEC_HAL_DEBUG ?= 0
|
||
|
|
||
|
# Enable/disable verbose debug output from HAL
|
||
|
ATEC_HAL_VERBOSE_DEBUG ?= 0
|
||
|
|
||
|
# Enable/disable i2c debug output from HAL
|
||
|
ATEC_I2C_HAL_DEBUG ?= 0
|
||
|
|
||
|
# Enable/disable printf from library
|
||
|
ATEC_PRINTF_ENABLE ?= 0
|