Skip to content

Commit 579246b

Browse files
authored
Merge pull request #494 from spir6s/master
Added missing ULONG64 definition for RX ports needed by USBX and NetX Duo
2 parents 0b0f1d0 + b443c0f commit 579246b

File tree

9 files changed

+18
-0
lines changed

9 files changed

+18
-0
lines changed

ports/rxv1/ccrx/inc/tx_port.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,10 @@ typedef int INT;
8282
typedef unsigned int UINT;
8383
typedef long LONG;
8484
typedef unsigned long ULONG;
85+
typedef unsigned long long ULONG64;
8586
typedef short SHORT;
8687
typedef unsigned short USHORT;
88+
#define ULONG64_DEFINED
8789

8890

8991
/* Define interrupt control options. */

ports/rxv1/gnu/inc/tx_port.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,10 @@ typedef int INT;
8484
typedef unsigned int UINT;
8585
typedef long LONG;
8686
typedef unsigned long ULONG;
87+
typedef unsigned long long ULONG64;
8788
typedef short SHORT;
8889
typedef unsigned short USHORT;
90+
#define ULONG64_DEFINED
8991

9092

9193
/* Define interrupt control options. */

ports/rxv1/iar/inc/tx_port.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,10 @@ typedef int INT;
8585
typedef unsigned int UINT;
8686
typedef long LONG;
8787
typedef unsigned long ULONG;
88+
typedef unsigned long long ULONG64;
8889
typedef short SHORT;
8990
typedef unsigned short USHORT;
91+
#define ULONG64_DEFINED
9092

9193

9294
/* Define interrupt control options. */

ports/rxv2/ccrx/inc/tx_port.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,10 @@ typedef int INT;
8484
typedef unsigned int UINT;
8585
typedef long LONG;
8686
typedef unsigned long ULONG;
87+
typedef unsigned long long ULONG64;
8788
typedef short SHORT;
8889
typedef unsigned short USHORT;
90+
#define ULONG64_DEFINED
8991

9092

9193
/* Define interrupt control options. */

ports/rxv2/gnu/inc/tx_port.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,10 @@ typedef int INT;
8686
typedef unsigned int UINT;
8787
typedef long LONG;
8888
typedef unsigned long ULONG;
89+
typedef unsigned long long ULONG64;
8990
typedef short SHORT;
9091
typedef unsigned short USHORT;
92+
#define ULONG64_DEFINED
9193

9294

9395
/* Define interrupt control options. */

ports/rxv2/iar/inc/tx_port.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,10 @@ typedef int INT;
8787
typedef unsigned int UINT;
8888
typedef long LONG;
8989
typedef unsigned long ULONG;
90+
typedef unsigned long long ULONG64;
9091
typedef short SHORT;
9192
typedef unsigned short USHORT;
93+
#define ULONG64_DEFINED
9294

9395

9496
/* Define interrupt control options. */

ports/rxv3/ccrx/inc/tx_port.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,10 @@ typedef int INT;
8383
typedef unsigned int UINT;
8484
typedef long LONG;
8585
typedef unsigned long ULONG;
86+
typedef unsigned long long ULONG64;
8687
typedef short SHORT;
8788
typedef unsigned short USHORT;
89+
#define ULONG64_DEFINED
8890

8991

9092
/* Define interrupt control options. */

ports/rxv3/gnu/inc/tx_port.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,10 @@ typedef int INT;
8585
typedef unsigned int UINT;
8686
typedef long LONG;
8787
typedef unsigned long ULONG;
88+
typedef unsigned long long ULONG64;
8889
typedef short SHORT;
8990
typedef unsigned short USHORT;
91+
#define ULONG64_DEFINED
9092

9193

9294
/* Define interrupt control options. */

ports/rxv3/iar/inc/tx_port.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,10 @@ typedef int INT;
8686
typedef unsigned int UINT;
8787
typedef long LONG;
8888
typedef unsigned long ULONG;
89+
typedef unsigned long long ULONG64;
8990
typedef short SHORT;
9091
typedef unsigned short USHORT;
92+
#define ULONG64_DEFINED
9193

9294

9395
/* Define interrupt control options. */

0 commit comments

Comments
 (0)