chore: HERV 통합 저장소 재초기화 커밋

손상된 .git 히스토리(missing tree)로 재초기화 후 작업트리 전체 커밋.
.claude/ 만 제외(로컬 에이전트 설정). 구 저장소 백업(.git_corrupt_backup/) 포함.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
jeon
2026-06-16 09:29:03 +09:00
commit a502322188
630 changed files with 65126 additions and 0 deletions
@@ -0,0 +1,24 @@
namespace ERVSimulator.Model
{
// HERV 펌웨어 SPEC_MODE_INFO=0x16 (대림사양, 히터X, 바이패스O, 공청X) 기준
// My_define.h:271 #if !((SPEC_MODE_INFO&0x0F)==0x03||==0x06) 분기
public enum RunMode : byte
{
Ventilation = 0,
Auto = 1,
Bypass = 2,
AirClean = 3,
FanTest = 4,
Off = 10, // MODE_OFF (MyMotor.c)
}
public enum DamperId
{
EA = 1, // 배기
OA = 2, // 외기
BYPASS = 3,
SA = 4, // 급기
RA = 5, // 환기
AIR = 6, // 공청
}
}