mirror of
https://github.com/dimoniche/solarium.vlad.git
synced 2026-01-29 20:43:31 +03:00
13 lines
328 B
C
13 lines
328 B
C
#ifndef _VERSION_H_
|
|
#define _VERSION_H_
|
|
|
|
#if defined(BOARD_SOLARIUM_WEB)
|
|
#define DEVICE_FW_VERSION "7.09"
|
|
#elif defined(BOARD_SOLARIUM_VLAD)
|
|
#define DEVICE_FW_VERSION "8.46"
|
|
#elif defined(BOARD_CENTRAL_CARWASH) || defined(BOARD_POST_CARWASH)
|
|
#define DEVICE_FW_VERSION "5.55"
|
|
#endif
|
|
|
|
|
|
#endif // #ifndef _VERSION_H_
|