Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
akashkollipara committed Jan 29, 2022
1 parent db48042 commit b7ac37e
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/projects/demo_avr_bit_banding/gpio_bit_banding.c
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@
/* 8bit Register */
typedef struct reg8
{
char b0:1;
char b1:1;
char b2:1;
char b3:1;
char b4:1;
char b5:1;
char b6:1;
char b7:1;
unsigned char b0:1;
unsigned char b1:1;
unsigned char b2:1;
unsigned char b3:1;
unsigned char b4:1;
unsigned char b5:1;
unsigned char b6:1;
unsigned char b7:1;
} reg8_t;


Expand Down

0 comments on commit b7ac37e

Please sign in to comment.