Skip to content

Commit

Permalink
clang-format
Browse files Browse the repository at this point in the history
  • Loading branch information
pwittich committed Jun 4, 2024
1 parent a6cce46 commit c154dbb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions projects/cm_mcu/FireflyUtils.c
Original file line number Diff line number Diff line change
Expand Up @@ -163,8 +163,8 @@ void readFFpresent(void)
((present_FFL12_F2_bar) << 10) | // 6 bits
(present_FFL4_F1_bar) << 6 | // 4 bits
((present_FFL12_F1_bar)); // 6 bits
uint32_t ff_combined_present = ~ff_combined_present_bar; // make active high
// masks are active high
uint32_t ff_combined_present = ~ff_combined_present_bar; // make active high
// masks are active high
ff_bitmask_args[1].present_bit_mask = (~present_FFL4_F1_bar) & 0xFU; // 4 bits
ff_bitmask_args[0].present_bit_mask = (~present_FFL12_F1_bar) & 0x3FU; // 6 bits
ff_bitmask_args[3].present_bit_mask = (~present_FFL4_F2_bar) & 0xFU; // 4 bits
Expand Down

0 comments on commit c154dbb

Please sign in to comment.