Skip to content

Commit

Permalink
fix duplicated IdType, issue #28
Browse files Browse the repository at this point in the history
  • Loading branch information
lancos committed Mar 23, 2024
1 parent 5fb936a commit eb25f57
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions SrcPony/at90sxx.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -157,9 +157,9 @@ typedef struct
int code1;
int code2;
int type;
} IdType;
} IdTypeAVR;

static IdType IdArray[] =
static IdTypeAVR IdArray[] =
{
{0x90, 0x01, AT90S1200},

Expand Down
4 changes: 2 additions & 2 deletions SrcPony/pic168xx.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@ typedef struct
{
int code;
int type;
} IdType;
} IdTypePic;

static IdType IdArray[] =
static IdTypePic IdArray[] =
{
{0x560, PIC1684A}, // 00 0101 011 0 0000

Expand Down

0 comments on commit eb25f57

Please sign in to comment.