mirror of
https://github.com/rvtr/ctr_mcu.git
synced 2025-10-31 13:51:10 -04:00
バージョンを0.18に Horizonリポジトリに0.18としてコミット(r17279) git-svn-id: file:///Volumes/Transfer/gigaleak_20231201/2020-05-23%20-%20ctr.7z%20+%20svn_v1.068.zip/ctr/svn/ctr_mcu@186 013db118-44a6-b54f-8bf7-843cb86687b1
56 lines
907 B
C
56 lines
907 B
C
#ifndef __config__
|
||
#define __config__
|
||
|
||
#define _debug_led_
|
||
//#define _FORCE_OFF_1SEC_
|
||
//#define _ALLOW_NOBATT_
|
||
//#define _FORCE_INFO_LED_FULLCOLOR_
|
||
|
||
#define MCU_VER_MAJOR 0x00
|
||
#define MCU_VER_MINOR 0x18
|
||
|
||
//#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
|
||
|
||
// “ÁŽêŽd—l //
|
||
//#define _SW_HOME_ENABLE_
|
||
|
||
// ---------------------------------- //
|
||
#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
|
||
|
||
#endif
|