diff --git a/artiq/frontend/artiq_devtool.py b/artiq/frontend/artiq_devtool.py index a4204d0c3..bc6feb7c0 100644 --- a/artiq/frontend/artiq_devtool.py +++ b/artiq/frontend/artiq_devtool.py @@ -100,7 +100,7 @@ def main(): logger.info("Booting runtime") flterm = run_command( - "{env} python3 flterm.py {serial} --speed 921600" + + "{env} python3 flterm.py {serial} " + "--kernel /tmp/{tmp}/runtime.bin " + ("--upload-only" if action == "boot" else "--output-only")) artiq_flash = run_command( @@ -151,7 +151,7 @@ def main(): logger.info("Connecting to device") flterm = run_command( - "{env} python3 flterm.py {serial} --speed 921600 --output-only") + "{env} python3 flterm.py {serial} --output-only") drain(flterm) else: diff --git a/artiq/gateware/targets/kc705_dds.py b/artiq/gateware/targets/kc705_dds.py index 5c3ff5072..dd6cafc6f 100755 --- a/artiq/gateware/targets/kc705_dds.py +++ b/artiq/gateware/targets/kc705_dds.py @@ -112,7 +112,6 @@ class _NIST_Ions(MiniSoC, AMPSoC): sdram_controller_type="minicon", l2_size=128*1024, ident=artiq_version, - uart_baudrate=921600, **kwargs) AMPSoC.__init__(self) if isinstance(self.platform.toolchain, XilinxVivadoToolchain): diff --git a/artiq/gateware/targets/kc705_drtio_master.py b/artiq/gateware/targets/kc705_drtio_master.py index 3f10857f7..f1b2f275b 100755 --- a/artiq/gateware/targets/kc705_drtio_master.py +++ b/artiq/gateware/targets/kc705_drtio_master.py @@ -33,7 +33,6 @@ class Master(MiniSoC, AMPSoC): sdram_controller_type="minicon", l2_size=128*1024, ident=artiq_version, - uart_baudrate=921600, **kwargs) AMPSoC.__init__(self) diff --git a/artiq/gateware/targets/kc705_drtio_satellite.py b/artiq/gateware/targets/kc705_drtio_satellite.py index af11ea703..151092586 100755 --- a/artiq/gateware/targets/kc705_drtio_satellite.py +++ b/artiq/gateware/targets/kc705_drtio_satellite.py @@ -131,7 +131,6 @@ class Satellite(BaseSoC): sdram_controller_type="minicon", l2_size=128*1024, ident=artiq_version, - uart_baudrate=921600, **kwargs) platform = self.platform diff --git a/artiq/gateware/targets/phaser.py b/artiq/gateware/targets/phaser.py index 4df5aa6d3..e13efc579 100755 --- a/artiq/gateware/targets/phaser.py +++ b/artiq/gateware/targets/phaser.py @@ -169,7 +169,6 @@ class Phaser(MiniSoC, AMPSoC): sdram_controller_type="minicon", l2_size=128*1024, ident=artiq_version, - uart_baudrate=921600, **kwargs) AMPSoC.__init__(self) self.platform.toolchain.bitstream_commands.extend([ diff --git a/artiq/gateware/targets/pipistrello.py b/artiq/gateware/targets/pipistrello.py index d81d6d2e4..f7fc45a71 100755 --- a/artiq/gateware/targets/pipistrello.py +++ b/artiq/gateware/targets/pipistrello.py @@ -160,7 +160,6 @@ class Demo(BaseSoC, AMPSoC): l2_size=64*1024, ident=artiq_version, clk_freq=75*1000*1000, - uart_baudrate=921600, **kwargs) AMPSoC.__init__(self) diff --git a/doc/manual/installing_from_source.rst b/doc/manual/installing_from_source.rst index 49e72987a..9db43a53b 100644 --- a/doc/manual/installing_from_source.rst +++ b/doc/manual/installing_from_source.rst @@ -187,7 +187,7 @@ These steps are required to generate gateware bitstream (``.bit``) files, build * Check that the board boots by running a serial terminal program (you may need to press its FPGA reconfiguration button or power-cycle it to load the gateware bitstream that was newly written into the flash): :: - $ flterm /dev/ttyUSB1 --speed 921600 + $ flterm /dev/ttyUSB1 MiSoC BIOS http://m-labs.hk [...] Booting from flash... @@ -197,7 +197,7 @@ These steps are required to generate gateware bitstream (``.bit``) files, build .. note:: flterm is part of MiSoC. If you installed MiSoC with ``setup.py develop --user``, the flterm launcher is in ``~/.local/bin``. -The communication parameters are 921600 8-N-1. Ensure that your user has access +The communication parameters are 115200 8-N-1. Ensure that your user has access to the serial device (``sudo adduser $USER dialout`` assuming standard setup). .. _installing-the-host-side-software: