boards: fvp_baser_aemv8r: remove scale and center images

Now that images are scaled up to the ~width of the page, there's no need
to scale. Also center images to make things prettier.

Signed-off-by: Gerard Marull-Paretas <gerard@teslabs.com>
This commit is contained in:
Gerard Marull-Paretas 2022-08-26 15:37:24 +02:00 committed by Carles Cufí
commit ec5b59fd17

View file

@ -10,7 +10,7 @@ Please refer to the official Arm Development Studio Page [1]_ for details. Here
``Version: 2020.b Build: 2020110909`` is used in the following example.
.. image:: images/version-info.jpg
:scale: 70%
:align: center
:alt: Arm DS Version
Download Arm FVP BaseR AEMv8-R
@ -25,13 +25,13 @@ Use DS perspective
From menu choose ``Window -> Perspective -> Open Perspective -> Other...``:
.. image:: images/perspective-choose-other.jpg
:scale: 70%
:align: center
:alt: Arm DS Perspective choose Other...
In the opened window, choose ``Development Studio (default)``:
.. image:: images/perspective-choose-ds.jpg
:scale: 70%
:align: center
:alt: Arm DS Perspective choose DS
Create a new configuration database
@ -40,19 +40,19 @@ Create a new configuration database
Create a new configuration database by selecting ``File -> New -> Other... -> Configuration Database``:
.. image:: images/create-new-configuration-database.jpg
:scale: 70%
:align: center
:alt: Arm DS create new configuration database
Choose a name for the database. Here ``Zephyr`` is used:
.. image:: images/create-new-configuration-database_database-name.jpg
:scale: 70%
:align: center
:alt: Arm DS create new configuration database: choose database name
Click ``Finish`` and the new configuration database can be seen in ``Project Explorer``:
.. image:: images/create-new-configuration-database_shown-in-project-explorer.jpg
:scale: 70%
:align: center
:alt: Arm DS create new configuration database: shown in project explorer
Create a new model configuration
@ -61,7 +61,7 @@ Create a new model configuration
Right click ``Zephyr`` in ``Project Explorer``, choose ``New -> Model Configuration``:
.. image:: images/create-new-model-configuration.jpg
:scale: 70%
:align: center
:alt: Arm DS create new model configuration
In the opened window:
@ -71,14 +71,14 @@ In the opened window:
3. Set ``Model Path`` to ``$FVP_D/FVP_BaseR_AEMv8R``, then ``Finish``.
.. image:: images/create-new-model-configuration_model-path.jpg
:scale: 70%
:align: center
:alt: Arm DS create new model configuration: set model path
Then in ``FVP_BaseR_AEMv8R`` tab, change ``ARMAEMv8-R_`` to ``V8R64-Generic``,
click ``Save`` and then click ``Import``:
.. image:: images/create-new-model-configuration_model-use-V8R64-Generic.jpg
:scale: 70%
:align: center
:alt: Arm DS create new model configuration: import
Create a new launch configuration
@ -87,7 +87,7 @@ Create a new launch configuration
From ``Project Explorer``, right click ``FVP_BaseR_AEMv8R`` and select ``Debug as -> Debug configurations...``:
.. image:: images/create-new-launch-configuration_context-menu.jpg
:scale: 70%
:align: center
:alt: Arm DS create new launch configuration: context menu
Select ``Generic Arm C/C++ Application`` and click ``New launch configuration`` button.
@ -105,7 +105,7 @@ A new configuration named ``New_configuration`` will be created.
The file ``zephyr.elf`` specified by ``-a`` is the binary built from Zephyr.
.. image:: images/create-new-launch-configuration_connection.jpg
:scale: 70%
:align: center
:alt: Arm DS create new launch configuration: connection
2. In ``Files`` tab:
@ -113,7 +113,7 @@ A new configuration named ``New_configuration`` will be created.
In ``Files`` box, set ``Load symbols from file`` to full path of ``zephyr.elf`` that you built.
.. image:: images/create-new-launch-configuration_files.jpg
:scale: 70%
:align: center
:alt: Arm DS create new launch configuration: files
3. In ``Debugger`` tab:
@ -127,7 +127,7 @@ A new configuration named ``New_configuration`` will be created.
- In ``Paths`` box, set ``Source search directory`` to the path to Zephyr source code.
.. image:: images/create-new-launch-configuration_debugger.jpg
:scale: 70%
:align: center
:alt: Arm DS create new launch configuration: debugger
After all these changes are made, click ``Apply``, then click ``Debug``. DS will
@ -135,7 +135,7 @@ launch ``FVP_BaseR_AEMv8R`` and connect to it. You can see a new session is
connected in ``Debug Control`` window.
.. image:: images/DS-debug-working.jpg
:scale: 70%
:align: center
:alt: Arm DS working
References