summaryrefslogtreecommitdiff
path: root/src/drivers/SpiMaster.cpp
diff options
context:
space:
mode:
authorJonathan Vander Mey <jonathan@vandermey.ca>2021-06-12 05:07:23 -0400
committerGitHub <noreply@github.com>2021-06-12 11:07:23 +0200
commit4d1626e3b6133e1b07c67749ac5037905e72270b (patch)
tree523b2b14effe0b9c6eb2e8bf226b53a914f9cd51 /src/drivers/SpiMaster.cpp
parent2c7ad783fc0d37c534050321a13759a28f9b83f0 (diff)
Fix fallthrough on case statement (#403)
Diffstat (limited to 'src/drivers/SpiMaster.cpp')
-rw-r--r--src/drivers/SpiMaster.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/drivers/SpiMaster.cpp b/src/drivers/SpiMaster.cpp
index 0d5bb83c..c45e1294 100644
--- a/src/drivers/SpiMaster.cpp
+++ b/src/drivers/SpiMaster.cpp
@@ -56,6 +56,7 @@ bool SpiMaster::Init() {
break;
case BitOrder::Lsb_Msb:
regConfig = 1;
+ break;
default:
return false;
}