Marek Bel 6 년 전
부모
커밋
a7128ffa04
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      Firmware/AutoDeplete.cpp

+ 2 - 0
Firmware/AutoDeplete.cpp

@@ -12,6 +12,8 @@
 static uint8_t depleted;
 static const uint8_t filamentCount = 5;
 
+//! @return binary 1 for all filaments
+//! @par fCount number of filaments
 static constexpr uint8_t allDepleted(uint8_t fCount)
 {
     return fCount == 1 ? 1 : ((1 << (fCount - 1)) | allDepleted(fCount - 1));