Added new parameter to be able to build the firmware for the breadboard platform or the PCB (latest) platform

This commit is contained in:
anschrammh 2023-03-24 14:51:42 +01:00
parent ccad2b7494
commit f770a8e436

View File

@ -8,6 +8,18 @@
*
*/
/**
* @brief Defines for which platform to compile the firmware for :
*
* SMART_WATCH_BREADBOARD : the smart watch dev hardware which is on a breadboard
* SMART_WATCH_PCB : the smart watch using the PCB
*
*/
#define SMART_WATCH_BREADBOARD (0)
#define SMART_WATCH_PCB (1)
#define HARDWARE_PLATFORM SMART_WATCH_PCB
/**
* @brief Define which kind of logs to display :
*