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

- 펌웨어(program), C# 대시보드(TestProgram), 시뮬레이터(Simulator),
  프로토콜/문서(Protocol, doc) 전체를 단일 저장소로 통합
- program 폴더의 별도 git 저장소를 제거하고 통합 저장소에 흡수
- 빌드 산출물(program/build, bin/obj, *.o/.elf/.bin/.hex 등) .gitignore 처리
- 사내 Synology NAS Git 원격 연결 예정

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-06-15 21:44:23 +09:00
commit 5a96a696b1
265 changed files with 76458 additions and 0 deletions
@@ -0,0 +1,57 @@
/**************************************************************************//**
* @file system_Nano100Series.h
* @version V1.00
* $Revision: 2 $
* $Date: 14/01/07 7:35p $
* @brief Nano100 series system clock definition file
*
* @note
* SPDX-License-Identifier: Apache-2.0
* Copyright (C) 2014 Nuvoton Technology Corp. All rights reserved.
*****************************************************************************/
#ifndef __SYSTEM_NANO100SERIES_H__
#define __SYSTEM_NANO100SERIES_H__
#ifdef __cplusplus
extern "C" {
#endif
/*----------------------------------------------------------------------------
Define SYSCLK
*----------------------------------------------------------------------------*/
#define __HXT (12000000UL)
#define __LXT (32768UL)
#define __HIRC12M (12000000UL)
#define __LIRC (10000UL)
#define __HIRC __HIRC12M
#define __HSI (__HIRC12M) /* Factory Default is internal 12MHz */
extern uint32_t SystemCoreClock; /*!< System Clock Frequency (Core Clock) */
extern uint32_t CyclesPerUs; /*!< Cycles per micro second */
/**
* Update SystemCoreClock variable
*
* @param None
* @return None
*
* @brief Updates the SystemCoreClock with current core Clock
* retrieved from CPU registers.
*/
extern void SystemCoreClockUpdate (void);
extern uint32_t SysGet_PLLClockFreq(void);
#ifdef __cplusplus
}
#endif
#endif //__SYSTEM_NANO100SERIES_H__
/*** (C) COPYRIGHT 2014 Nuvoton Technology Corp. ***/