20 lines
511 B
C
20 lines
511 B
C
#ifndef WINDOW_SETTINGS_COMMON_H
|
|
#define WINDOW_SETTINGS_COMMON_H
|
|
#if (USE_DEVICE_SETTINGS)
|
|
#include "../rm_include.h"
|
|
|
|
#if (USE_DEVICE_SETTINGS_JSON)
|
|
#include "window_settings_json.h"
|
|
#else // USE_DEVICE_SETTINGS_JSON
|
|
#if (RM_MODEL == RM_MODEL_TYPE_XLDR_88)
|
|
#include "window_settings_xdr6688.h"
|
|
#elif (RM_MODEL_EMT_KR)
|
|
#include "window_settings_emt_kr.h"
|
|
#else
|
|
#include "window_settings_standard.h"
|
|
#endif
|
|
#endif // USE_DEVICE_SETTINGS_JSON
|
|
|
|
#endif // USE_DEVICE_SETTINGS
|
|
#endif // WINDOW_SETTINGS_COMMON_H
|