Skip to content

Commit

Permalink
apollo3: Small formatting correction for two multi-line comments
Browse files Browse the repository at this point in the history
  • Loading branch information
dragonmux committed Sep 2, 2024
1 parent 93b690c commit 3fe0bc5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/target/apollo3.c
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ static bool apollo_3_flash_write(target_flash_s *flash, target_addr_t dest, cons
#define APOLLO_3_CHIPPN_REGISTER 0x40020000U /* Address of the Chip Part Number Register */

/*
Define the bitfields of the CHIPPN register.
This register contains the part number of the MCU
* Define the bitfields of the CHIPPN register.
*
* This register contains the part number of the MCU
*/
#define APOLLO_3_CHIPPN_PART_NUMBER_MASK 0xff000000U
#define APOLLO_3_CHIPPN_PART_NUMBER_BIT_POSITION 0x18U
Expand Down Expand Up @@ -69,9 +69,9 @@ static bool apollo_3_flash_write(target_flash_s *flash, target_addr_t dest, cons
#define APOLLO_3_CHIPREV_REGISTER 0x4002000cU /* Chip Revision Register */

/*
Define the bitfields of the CHIPREV register.
This register contains the revision of the MCU
* Define the bitfields of the CHIPREV register.
*
* This register contains the revision of the MCU
*/
#define APOLLO_3_CHIPREV_RESERVED 0xfff00000U
#define APOLLO_3_CHIPREV_SI_PART 0x000fff00U
Expand Down

0 comments on commit 3fe0bc5

Please sign in to comment.