mirror of
https://github.com/rvtr/ctr_mcu.git
synced 2025-10-31 13:51:10 -04:00
git-svn-id: file:///Volumes/Transfer/gigaleak_20231201/2020-05-23%20-%20ctr.7z%20+%20svn_v1.068.zip/ctr/svn/ctr_mcu@147 013db118-44a6-b54f-8bf7-843cb86687b1
67 lines
1.0 KiB
C
67 lines
1.0 KiB
C
#ifndef __config__
|
||
#define __config__
|
||
|
||
//#define _debug_
|
||
//#define _debug_led_
|
||
|
||
|
||
#define MCU_VER_MAJOR 0x00
|
||
#define MCU_VER_MINOR 0x14
|
||
|
||
//#define PM_CCIC_TIM
|
||
|
||
|
||
//#define _MODEL_TEG2_
|
||
// <20>ªTEG2 CPU <20>{ Type-T
|
||
|
||
//#define _MODEL_WM0_
|
||
//#define _MODEL_WM0_TEG2_CTRC_
|
||
|
||
//#define _MODEL_TS0_
|
||
// <20>ªTEG2 CPU <20>{ Type-C
|
||
|
||
//#define _MODEL_CTR_
|
||
// <20>ªTS board, WM1,1 TS-CTRC
|
||
|
||
#define _MODEL_CTR_NOTIFY_FULLCOLOR_
|
||
// <20>ªTS board, WM1,1 TS-CTRC
|
||
|
||
|
||
// “ÁŽêŽd—l //
|
||
//#define _SW_HOME_ENABLE_
|
||
#define _FOR_E3_
|
||
|
||
// ---------------------------------- //
|
||
#ifdef _MODEL_TEG2_
|
||
#define _PMIC_TWL_
|
||
#define _MCU_KE3_
|
||
#endif
|
||
|
||
|
||
#ifdef _MODEL_WM0_
|
||
#define _PMIC_TWL_
|
||
#define _MCU_BSR_
|
||
#define _SW_HOME_ENABLE_
|
||
#endif
|
||
|
||
|
||
#ifdef _MODEL_TS0_
|
||
#define _PMIC_CTR_
|
||
#define _MCU_BSR_
|
||
#endif
|
||
|
||
#ifdef _MODEL_CTR_
|
||
#define _PMIC_CTR_
|
||
#define _MCU_BSR_
|
||
#define _SW_HOME_ENABLE_
|
||
#endif
|
||
|
||
#ifdef _MODEL_CTR_NOTIFY_FULLCOLOR_
|
||
#define _MODEL_CTR_
|
||
#define _PMIC_CTR_
|
||
#define _MCU_BSR_
|
||
#define _SW_HOME_ENABLE_
|
||
#endif
|
||
|
||
#endif
|