요약·해설과 원문, 전문 번역을 서로 분리했습니다. API 이름, symbol, source path는 원문 표기를 사용합니다.
1. 요약·해설
원문의 핵심 논리와 kernel programming 관점의 보충 설명입니다. 아래의 전문 번역과는 별도로 작성했습니다.
2. 영어 원문 전체
번역 기준이 된 Linux v6.18.37 원문입니다. 줄 번호는 이 버전의 파일 좌표입니다.
원문 전체 펼치기
Kernel driver tmp102
====================
Supported chips:
* Texas Instruments TMP102
Prefix: 'tmp102'
Addresses scanned: none
Datasheet: http://focus.ti.com/docs/prod/folders/print/tmp102.html
Author:
Steven King <sfking@fdwdc.com>
Description
-----------
The Texas Instruments TMP102 implements one temperature sensor. Limits can be
set through the Overtemperature Shutdown register and Hysteresis register. The
sensor is accurate to 0.5 degree over the range of -25 to +85 C, and to 1.0
degree from -40 to +125 C. Resolution of the sensor is 0.0625 degree. The
operating temperature has a minimum of -55 C and a maximum of +150 C.
The TMP102 has a programmable update rate that can select between 8, 4, 1, and
0.5 Hz. (Currently the driver only supports the default of 4 Hz).
The driver provides the common sysfs-interface for temperatures (see
Documentation/hwmon/sysfs-interface.rst under Temperatures).
3. 한국어 전문 번역
영어 원문의 문단 순서와 의미를 유지한 전체 번역입니다. 코드, 함수명, symbol과 URL은 원문 표기를 유지합니다.
지원 칩과 작성자
1-17`tmp102` 드라이버는 Texas Instruments TMP102를 지원하며 접두사는 `tmp102`입니다. 자동 검색 주소는 없고 장치는 명시적으로 생성해야 합니다. 작성자는 Steven King입니다.
지원 부품과 검색 정책입니다.
자동 검색이 없으므로 펌웨어 또는 보드 정보로 생성합니다.
Kernel driver tmp102
====================
Supported chips:
* Texas Instruments TMP102
Prefix: 'tmp102'
Addresses scanned: none
Datasheet: http://focus.ti.com/docs/prod/folders/print/tmp102.html
Author:
Steven King <sfking@fdwdc.com>
온도 정확도·해상도·갱신율
18-31TMP102는 온도 센서 하나를 구현합니다. Overtemperature Shutdown 레지스터와 Hysteresis 레지스터로 한계를 설정할 수 있습니다.
센서는 -25~+85°C에서 0.5°C, -40~+125°C에서 1.0°C 정확도를 갖습니다. 해상도는 0.0625°C이며 동작 온도는 최소 -55°C, 최대 +150°C입니다.
갱신율은 8, 4, 1, 0.5 Hz 중에서 프로그램할 수 있지만 현재 드라이버는 기본값 4 Hz만 지원합니다.
드라이버는 `Documentation/hwmon/sysfs-interface.rst`의 Temperatures 절에 정의된 공통 온도 sysfs 인터페이스를 제공합니다.
정확도 범위와 드라이버 제한입니다.
현재 드라이버가 사용하는 기본 측정 경로입니다.
Description
-----------
The Texas Instruments TMP102 implements one temperature sensor. Limits can be
set through the Overtemperature Shutdown register and Hysteresis register. The
sensor is accurate to 0.5 degree over the range of -25 to +85 C, and to 1.0
degree from -40 to +125 C. Resolution of the sensor is 0.0625 degree. The
operating temperature has a minimum of -55 C and a maximum of +150 C.
The TMP102 has a programmable update rate that can select between 8, 4, 1, and
0.5 Hz. (Currently the driver only supports the default of 4 Hz).
The driver provides the common sysfs-interface for temperatures (see
Documentation/hwmon/sysfs-interface.rst under Temperatures).
요약·해설
tmp102.rst:1-31TMP102는 0.0625°C 해상도의 단일 온도 센서이며 하드웨어의 여러 갱신율 중 드라이버는 기본 4 Hz를 사용합니다.
원문 분량과 핵심 기능을 요약합니다.
장치 초기화부터 측정값 제공까지의 핵심 순서입니다.