소스 검색

Fix analogReadResolution ADC1 cal

main
PaulStoffregen 8 년 전
부모
커밋
2185bdc936
1개의 변경된 파일6개의 추가작업 그리고 1개의 파일을 삭제
  1. +6
    -1
      teensy3/analog.c

+ 6
- 1
teensy3/analog.c 파일 보기

@@ -327,7 +327,12 @@ void analogReadRes(unsigned int bits)
analog_right_shift = config - bits;
if (config != analog_config_bits) {
analog_config_bits = config;
if (calibrating) ADC0_SC3 = 0; // cancel cal
if (calibrating) {
ADC0_SC3 = 0; // cancel cal
#ifdef HAS_KINETIS_ADC1
ADC1_SC3 = 0;
#endif
}
analog_init();
}
}

Loading…
취소
저장