← Documents Documentation/hwmon/tmp102.rst GitHub 원문 ↗

Linux 6.18.37 · Hardware Monitoring

Kernel driver tmp102

TMP102의 정밀 온도 측정 범위와 현재 4 Hz 갱신율 제한을 설명합니다.

Source pathDocumentation/hwmon/tmp102.rst
Source versionLinux v6.18.37
TranslationDUJINLABS 전문 번역 + 해설

요약·해설과 원문, 전문 번역을 서로 분리했습니다. API 이름, symbol, source path는 원문 표기를 사용합니다.

1. 요약·해설

원문의 핵심 논리와 kernel programming 관점의 보충 설명입니다. 아래의 전문 번역과는 별도로 작성했습니다.

요약·해설

tmp102.rst:1-31

TMP102는 0.0625°C 해상도의 단일 온도 센서이며 하드웨어의 여러 갱신율 중 드라이버는 기본 4 Hz를 사용합니다.

문서 개요
항목
SourceDocumentation/hwmon/tmp102.rst
분량31 source lines
해상도0.0625°C
갱신율4 Hz

원문 분량과 핵심 기능을 요약합니다.

동작 흐름
장치 생성4 Hz 설정온도 변환한계 상태 확인공통 temp ABI 제공

장치 초기화부터 측정값 제공까지의 핵심 순서입니다.

2. 영어 원문 전체

번역 기준이 된 Linux v6.18.37 원문입니다. 줄 번호는 이 버전의 파일 좌표입니다.

원문 전체 펼치기
1 Kernel driver tmp102
2 ====================
3
4 Supported chips:
5
6 * Texas Instruments TMP102
7
8 Prefix: 'tmp102'
9
10 Addresses scanned: none
11
12 Datasheet: http://focus.ti.com/docs/prod/folders/print/tmp102.html
13
14 Author:
15
16 Steven King <sfking@fdwdc.com>
17
18 Description
19 -----------
20
21 The Texas Instruments TMP102 implements one temperature sensor. Limits can be
22 set through the Overtemperature Shutdown register and Hysteresis register. The
23 sensor is accurate to 0.5 degree over the range of -25 to +85 C, and to 1.0
24 degree from -40 to +125 C. Resolution of the sensor is 0.0625 degree. The
25 operating temperature has a minimum of -55 C and a maximum of +150 C.
26
27 The TMP102 has a programmable update rate that can select between 8, 4, 1, and
28 0.5 Hz. (Currently the driver only supports the default of 4 Hz).
29
30 The driver provides the common sysfs-interface for temperatures (see
31 Documentation/hwmon/sysfs-interface.rst under Temperatures).
32

3. 한국어 전문 번역

영어 원문의 문단 순서와 의미를 유지한 전체 번역입니다. 코드, 함수명, symbol과 URL은 원문 표기를 유지합니다.

지원 칩과 작성자

1-17

`tmp102` 드라이버는 Texas Instruments TMP102를 지원하며 접두사는 `tmp102`입니다. 자동 검색 주소는 없고 장치는 명시적으로 생성해야 합니다. 작성자는 Steven King입니다.

TMP102 식별 정보
접두사자동 검색
Texas Instruments TMP102tmp102없음

지원 부품과 검색 정책입니다.

TMP102 장치 준비
TMP102 하드웨어 배치I2C 장치 명시적 생성`tmp102` 드라이버 결합센서 설정 읽기hwmon 등록

자동 검색이 없으므로 펌웨어 또는 보드 정보로 생성합니다.

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-31

TMP102는 온도 센서 하나를 구현합니다. 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 인터페이스를 제공합니다.

TMP102 온도 특성
항목
센서 수1
정확도0.5°C (-25~+85°C)
확장 범위 정확도1.0°C (-40~+125°C)
해상도0.0625°C
동작 범위-55~+150°C
갱신율하드웨어 8/4/1/0.5 Hz, 드라이버 4 Hz

정확도 범위와 드라이버 제한입니다.

TMP102 측정
4 Hz 기본 갱신율 사용온도 센서 변환0.0625°C 해상도 값 읽기한계·히스테리시스 상태 반영공통 temp 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).