mirror of
https://github.com/olofk/serv.git
synced 2025-04-20 11:57:07 -04:00
Prepare for release
This commit is contained in:
parent
5fa5c5c3c3
commit
109acd0a53
7 changed files with 19 additions and 10 deletions
9
NEWS
9
NEWS
|
@ -1,3 +1,12 @@
|
|||
1.2.1 2022-12-25 Olof Kindgren
|
||||
======================================================
|
||||
|
||||
* Guarantee at least 2 cycles of o_rst after ice40 PLL is locked
|
||||
* New Servant ports: ICE-V Wireless
|
||||
* Add reset input for Arty A7
|
||||
* Add Servant documentation
|
||||
* Updated RISC-V Compliance support from 2.7.4 to 3.x
|
||||
|
||||
1.2.0 2022-07-25 Olof Kindgren
|
||||
======================================================
|
||||
|
||||
|
|
|
@ -47,7 +47,7 @@ We are now ready to do our first exercises with SERV. If everything above is don
|
|||
|
||||
If everything worked, the output should look like
|
||||
|
||||
INFO: Preparing ::serv:1.2.0
|
||||
INFO: Preparing ::serv:1.2.1
|
||||
INFO: Setting up project
|
||||
|
||||
INFO: Building simulation model
|
||||
|
|
|
@ -98,7 +98,7 @@ iCEstick
|
|||
Pin 95 is used as the GPIO output which is connected to the board's green LED. Due to this board's limited Embedded BRAM, programs with a maximum of 7168 bytes can be loaded. The default program for this board is blinky.hex.
|
||||
|
||||
fusesoc run --target=icestick servant
|
||||
iceprog build/servant_1.2.0/icestick-icestorm/servant_1.2.0.bin
|
||||
iceprog build/servant_1.2.1/icestick-icestorm/servant_1.2.1.bin
|
||||
|
||||
iCESugar
|
||||
^^^^^^^^
|
||||
|
@ -116,7 +116,7 @@ Pin 9 is used for UART output with 57600 baud rate.
|
|||
|
||||
fusesoc run --target=icev_wireless servant
|
||||
|
||||
iceprog build/servant_1.2.0/icestick-icestorm/servant_1.2.0.bin
|
||||
iceprog build/servant_1.2.1/icestick-icestorm/servant_1.2.1.bin
|
||||
|
||||
Nandland Go Board
|
||||
^^^^^^^^^^^^^^^^^
|
||||
|
@ -124,7 +124,7 @@ Nandland Go Board
|
|||
Pin 56 is used as the GPIO output which is connected to the board's LED1. Due to this board's limited Embedded BRAM, programs with a maximum of 7168 bytes can be loaded. The default program for this board is blinky.hex.
|
||||
|
||||
fusesoc run --target=go_board servant
|
||||
iceprog build/servant_1.2.0/go_board-icestorm/servant_1.2.0.bin
|
||||
iceprog build/servant_1.2.1/go_board-icestorm/servant_1.2.1.bin
|
||||
|
||||
Nexys 2
|
||||
^^^^^^^
|
||||
|
@ -141,7 +141,7 @@ OrangeCrab R0.2
|
|||
Pin D1 is used for UART output with 115200 baud rate.
|
||||
|
||||
fusesoc run --target=orangecrab_r0.2 servant
|
||||
dfu-util -d 1209:5af0 -D build/servant_1.2.0/orangecrab_r0.2-trellis/servant_1.2.0.bit
|
||||
dfu-util -d 1209:5af0 -D build/servant_1.2.1/orangecrab_r0.2-trellis/servant_1.2.1.bit
|
||||
|
||||
Saanlima Pipistrello (Spartan6 LX45)
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
CAPI=2:
|
||||
|
||||
name : ::serv:1.2.0
|
||||
name : ::serv:1.2.1
|
||||
|
||||
filesets:
|
||||
core:
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
CAPI=2:
|
||||
|
||||
name : ::servant:1.2.0
|
||||
name : ::servant:1.2.1
|
||||
|
||||
filesets:
|
||||
# Common filesets
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
CAPI=2:
|
||||
|
||||
name : ::serving:1.2.0
|
||||
name : ::serving:1.2.1
|
||||
|
||||
filesets:
|
||||
rtl:
|
||||
|
|
|
@ -8,7 +8,7 @@ logger = logging.getLogger()
|
|||
|
||||
class serv(pluginTemplate):
|
||||
__model__ = "serv"
|
||||
__version__ = "1.2.0"
|
||||
__version__ = "1.2.1"
|
||||
|
||||
def __init__(self, *args, **kwargs):
|
||||
sclass = super().__init__(*args, **kwargs)
|
||||
|
@ -89,4 +89,4 @@ class serv(pluginTemplate):
|
|||
sigdump_run = self.sigdump_cmd.format(test_dir,file_name)
|
||||
utils.shellCommand(sigdump_run).run()
|
||||
if not self.target_run:
|
||||
raise SystemExit
|
||||
raise SystemExit
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue