소스 검색

Return 0-size for wrong id

it checks for all bytes=0 or 0xff (the pin might be hold low or high by other connections)
main
Frank 8 년 전
부모
커밋
83c613204c
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. +4
    -0
      SerialFlashChip.cpp

+ 4
- 0
SerialFlashChip.cpp 파일 보기

@@ -446,6 +446,10 @@ uint32_t SerialFlashChip::capacity(const uint8_t *id)
} else
if (id[2] >= 32 && id[2] <= 37) {
n = 1ul << (id[2] - 6);
} else
if ((id[0]==0 && id[1]==0 && id[2]==0) ||
(id[0]==255 && id[1]==255 && id[2]==255)) {
n = 0;
}
//Serial.printf("capacity %lu\n", n);
return n;

Loading…
취소
저장