Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
wrpc-sw
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
hdl-core-lib
wr-cores
wrpc-sw
Commits
3e4c6f1d
There was an error fetching the commit references. Please try again later.
Commit
3e4c6f1d
authored
12 years ago
by
Wesley W. Terpstra
Browse files
Options
Downloads
Patches
Plain Diff
Increase to 90KB and increase socket count for measure_t24p
parent
b1ac9f9a
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
Makefile
+2
-2
2 additions, 2 deletions
Makefile
arch/lm32/ram.ld
+1
-1
1 addition, 1 deletion
arch/lm32/ram.ld
boards/arria/board.h
+1
-1
1 addition, 1 deletion
boards/arria/board.h
boards/spec/board.h
+2
-2
2 additions, 2 deletions
boards/spec/board.h
with
6 additions
and
6 deletions
Makefile
+
2
−
2
View file @
3e4c6f1d
# choose your board here.
BOARD
=
arria
BOARD
=
spec
# 1 enables Etherbone support
WITH_ETHERBONE
=
1
...
...
@@ -116,7 +116,7 @@ wrc: $(OBJS)
${
OBJCOPY
}
-O
binary
$(
OUTPUT
)
.elf
$(
OUTPUT
)
.bin
${
OBJDUMP
}
-d
$(
OUTPUT
)
.elf
>
$(
OUTPUT
)
_disasm.S
./tools/genraminit
$(
OUTPUT
)
.bin 0
>
$(
OUTPUT
)
.ram
./tools/genramvhd
-s
81920
$(
OUTPUT
)
.bin
>
$(
OUTPUT
)
.vhd
./tools/genramvhd
-s
90112
$(
OUTPUT
)
.bin
>
$(
OUTPUT
)
.vhd
clean
:
rm
-f
$(
OBJS
)
$(
OUTPUT
)
.elf
$(
OUTPUT
)
.bin
$(
OUTPUT
)
.ram
...
...
This diff is collapsed.
Click to expand it.
arch/lm32/ram.ld
+
1
−
1
View file @
3e4c6f1d
...
...
@@ -31,7 +31,7 @@ GROUP(-lgcc -lc)
MEMORY
{
ram : ORIGIN = 0x00000000, LENGTH = 0x1
4
000
ram : ORIGIN = 0x00000000, LENGTH = 0x1
6
000
}
SECTIONS
...
...
This diff is collapsed.
Click to expand it.
boards/arria/board.h
+
1
−
1
View file @
3e4c6f1d
...
...
@@ -16,7 +16,7 @@
#define UART_BAUDRATE 115200ULL
/* Maximum number of simultaneously created sockets */
#define NET_MAX_SOCKETS
3
#define NET_MAX_SOCKETS
4
/* Socket buffer size, determines the max. RX packet size */
#define NET_SKBUF_SIZE 512
...
...
This diff is collapsed.
Click to expand it.
boards/spec/board.h
+
2
−
2
View file @
3e4c6f1d
...
...
@@ -16,10 +16,10 @@
#define UART_BAUDRATE 115200ULL
/* Maximum number of simultaneously created sockets */
#define NET_MAX_SOCKETS
3
#define NET_MAX_SOCKETS
4
/* Socket buffer size, determines the max. RX packet size */
#define NET_SKBUF_SIZE
256
#define NET_SKBUF_SIZE
512
/* Number of auxillary clock channels - usually equal to the number of FMCs */
#define NUM_AUX_CLOCKS 1
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment