README update

This commit is contained in:
Robin Müller 2020-12-30 09:39:34 +01:00 committed by Robin Mueller
parent 4f6835e070
commit 9a2662d77e

View File

@ -203,17 +203,26 @@ When using Windows, run theses steps in MSYS2.
* Remote File Path: /tmp/eive_obsw.elf * Remote File Path: /tmp/eive_obsw.elf
## Debugging the software via Flatsat PC ## Debugging the software via Flatsat PC
Open SSH connection to flatsat PC: Open SSH connection to flatsat PC:
```sh ```sh
ssh eive@2001:7c0:2018:1099:babe:0:e1fe:f1a5 ssh eive@2001:7c0:2018:1099:babe:0:e1fe:f1a5
``` ```
or
```sh
ssh eive@192.168.199.227
```
To access the console of the Q7S run the following: To access the console of the Q7S run the following:
```sh ```sh
picocom -b 115200 /dev/ttyUSB0 picocom -b 115200 /dev/ttyUSB0
``` ```
You can use `AltGr` + `X` to exit the picocom session.
To debug an application, first make sure a static IP address is assigned to the Q7S. Run ifconfig on the Q7S serial console. To debug an application, first make sure a static IP address is assigned to the Q7S. Run ifconfig on the Q7S serial console.
```sh ```sh
@ -227,7 +236,8 @@ ifconfig eth0 192.168.133.10
ifconfig eth0 netmask 255.255.255.0 ifconfig eth0 netmask 255.255.255.0
``` ```
To launch application from Xilinx SDK setup port fowarding on the localhost. To launch application from Xilinx SDK setup port fowarding on the development machine
(not on the flatsat!)
```sh ```sh
ssh -L 1534:192.168.133.10:1534 eive@2001:7c0:2018:1099:babe:0:e1fe:f1a5 ssh -L 1534:192.168.133.10:1534 eive@2001:7c0:2018:1099:babe:0:e1fe:f1a5