16 lines
362 B
C
16 lines
362 B
C
#ifndef RM_SETTINGS_CFG_H
|
|
#define RM_SETTINGS_CFG_H
|
|
#if (USE_DEVICE_SETTINGS)
|
|
#include "../rm_include.h"
|
|
|
|
#if (RM_MODEL == RM_MODEL_TYPE_XLDR_88)
|
|
#include "rm_settings_cfg_xdr6688.h"
|
|
#elif (RM_MODEL_EMT_KR)
|
|
#include "rm_settings_cfg_emt_kr.h"
|
|
#else
|
|
#include "rm_settings_cfg_standard.h"
|
|
#endif
|
|
|
|
#endif // #if (USE_DEVICE_SETTINGS)
|
|
#endif // RM_SETTINGS_CFG_H
|