소스 검색

Fix temperature measurement

k4be 1 년 전
부모
커밋
99428100ff
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      soft/ds18b20.c

+ 1 - 1
soft/ds18b20.c

@@ -62,6 +62,6 @@ void gettemp(void){
 	
 	_1WireInit();
 	_1WireWriteByte(0xcc);
-	_1WireWriteByte(0x44);
+	_1WireWriteBytePR(0x44);
 	atomic_set_uint(&System.timers.owire, ms(4000));
 }