Skip to content

Commit

Permalink
#45
Browse files Browse the repository at this point in the history
  • Loading branch information
moononournation committed Jun 6, 2021
1 parent 6022347 commit 7296aa9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Arduino_DataBus.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -65,16 +65,16 @@ void Arduino_DataBus::batchOperation(uint8_t batch[], size_t len)
break;
case WRITE_C8_D16:
l++;
[[fallthrough]];
/* fall through */
case WRITE_C8_D8:
l++;
[[fallthrough]];
/* fall through */
case WRITE_COMMAND_8:
writeCommand(batch[++i]);
break;
case WRITE_C16_D16:
l = 2;
[[fallthrough]];
/* fall through */
case WRITE_COMMAND_16:
_data16.msb = batch[++i];
_data16.lsb = batch[++i];
Expand Down

0 comments on commit 7296aa9

Please sign in to comment.