Fix fallthrough on case statement (#403)

This commit is contained in:
Jonathan Vander Mey
2021-06-12 05:07:23 -04:00
committed by GitHub
parent 2c7ad783fc
commit 4d1626e3b6

View File

@@ -56,6 +56,7 @@ bool SpiMaster::Init() {
break; break;
case BitOrder::Lsb_Msb: case BitOrder::Lsb_Msb:
regConfig = 1; regConfig = 1;
break;
default: default:
return false; return false;
} }