From 5be8d6a1f5ce90c4bb1ef1cf0e49cb556538309e Mon Sep 17 00:00:00 2001 From: LeMoustachu Date: Sat, 7 May 2022 20:39:53 +0200 Subject: [PATCH 1/2] [minor changes] Just Update issues badge to work with new repo URL (#222) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5cc9ed4a5..754001cc9 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@

cc by-nc-sa 4.0 - Issues + Issues
Discord

From 6758a95292557a22bf36e37318d5ad6fafbb0f1e Mon Sep 17 00:00:00 2001 From: iamlambda <77165319+iamlambda@users.noreply.github.com> Date: Sat, 7 May 2022 20:40:23 +0200 Subject: [PATCH 2/2] misleading comment (#216) --- ion/src/device/shared/drivers/exam_mode.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ion/src/device/shared/drivers/exam_mode.cpp b/ion/src/device/shared/drivers/exam_mode.cpp index 51fd7be06..121a9a15c 100644 --- a/ion/src/device/shared/drivers/exam_mode.cpp +++ b/ion/src/device/shared/drivers/exam_mode.cpp @@ -34,7 +34,7 @@ char ones[Config::ExamModeBufferSize] constexpr static size_t numberOfBitsInByte = 8; -// if i = 0b000011101, firstOneBitInByte(i) returns 5 +// if i = 0b000011101, numberOfBitsAfterLeadingZeroes(i) returns 5 size_t numberOfBitsAfterLeadingZeroes(int i) { int minShift = 0; int maxShift = numberOfBitsInByte;