Skip to content

Commit

Permalink
Merge branch 'release/v1.0.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
valeros committed Oct 1, 2020
2 parents 0be46db + f8b586d commit 32a2f24
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 10 deletions.
5 changes: 2 additions & 3 deletions builder/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,7 @@ def generate_disassembly(target, source, env):
def run_verilator(target, source, env):
trace_file = os.path.join(env.subst("$BUILD_DIR"), "trace.vcd")
if os.path.isfile(trace_file):
print("Trace file %s already exists" % trace_file)
return
os.remove(trace_file)

cmd = [
os.path.join(
Expand All @@ -85,7 +84,7 @@ def run_verilator(target, source, env):

p = subprocess.Popen(cmd, cwd=env.subst("$BUILD_DIR"))

# Wait for sometime while data is being collected
# Wait for some time while data is being collected
time.sleep(3)
p.terminate()

Expand Down
2 changes: 1 addition & 1 deletion examples/native-asm/platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
; Please visit documentation for the other options and examples
; http://docs.platformio.org/page/projectconf.html

[env:swervolf_nexys]
[env:rvfpga]
platform = chipsalliance
board = swervolf_nexys
board_build.ldscript = ld/link.ld
Expand Down
4 changes: 2 additions & 2 deletions examples/native-bare_c/platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
; Please visit documentation for the other options and examples
; http://docs.platformio.org/page/projectconf.html

[env:swervolf_nexys]
[env:rvfpga]
platform = chipsalliance
board = swervolf_nexys
board_build.ldscript = ld/link.ld
Expand All @@ -17,7 +17,7 @@ board_build.ldscript = ld/link.ld
; debug_init_break = tbreak main

; Path to a bitstream used with "program_fpga" target
board_build.bitstream_file = swervolf_0.7.bit
; board_build.bitstream_file = swervolf_0.7.bit

; Path to Vivado project files for "generate_bitstream" target
; board_build.swervolf_run_tc = swervolf_0.6_run.tcl
Expand Down
2 changes: 1 addition & 1 deletion examples/psp-hello-world/platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
; Please visit documentation for the other options and examples
; http://docs.platformio.org/page/projectconf.html

[env:swervolf_nexys]
[env:rvfpga]
platform = chipsalliance
board = swervolf_nexys
framework = wd-riscv-sdk
2 changes: 1 addition & 1 deletion examples/rtosal-freertos/platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
; Please visit documentation for the other options and examples
; http://docs.platformio.org/page/projectconf.html

[env:swervolf nexys]
[env:rvfpga]
platform = chipsalliance
board = swervolf_nexys
framework = wd-riscv-sdk, freertos
3 changes: 1 addition & 2 deletions platform.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"type": "git",
"url": "https://github.com/platformio/platform-chipsalliance.git"
},
"version": "1.0.0",
"version": "1.0.1",
"frameworks": {
"wd-riscv-sdk": {
"package": "framework-wd-riscv-sdk",
Expand Down Expand Up @@ -45,7 +45,6 @@
"version": "0.0.0-alpha+sha.ca4b2392d8"
},
"tool-openocd-riscv-chipsalliance": {
"optional": true,
"type": "uploader",
"owner": "platformio",
"version": "~1.1000.0"
Expand Down

0 comments on commit 32a2f24

Please sign in to comment.