Compare commits

..

No commits in common. "87f45e060ee6ede655dfff29318ff9c392f8d2fb" and "79ff19015a0ad2c1b5dd45d8038bfc323267f4ac" have entirely different histories.

6 changed files with 6 additions and 43 deletions

View File

@ -6,7 +6,7 @@ Prerequisites
============= =============
- Python 3.8 or higher - Python 3.8 or higher
- icsneopy installed (see :doc:`installation`) - icsneopy library installed
- CAN hardware device connected - CAN hardware device connected
:download:`Download complete example <../../examples/python/can/can_complete_example.py>` :download:`Download complete example <../../examples/python/can/can_complete_example.py>`

View File

@ -8,7 +8,7 @@ Prerequisites
============= =============
- Python 3.8 or higher - Python 3.8 or higher
- icsneopy installed (see :doc:`installation`) - icsneopy library installed
- Intrepid Control Systems Device - Intrepid Control Systems Device
:download:`Download complete example <../../examples/python/ethernet/ethernet_complete_example.py>` :download:`Download complete example <../../examples/python/ethernet/ethernet_complete_example.py>`

View File

@ -5,7 +5,7 @@ FlexRay Getting Started
Prerequisites Prerequisites
============= =============
- icsneopy installed (see :doc:`installation`) - icsneopy library installed
- FlexRay hardware device connected (e.g., Fire3 Flexray) - FlexRay hardware device connected (e.g., Fire3 Flexray)
- Proper FlexRay bus termination (100Ω on each channel end) - Proper FlexRay bus termination (100Ω on each channel end)

View File

@ -5,7 +5,6 @@ icsneopy
.. toctree:: .. toctree::
:maxdepth: 2 :maxdepth: 2
installation
can_getting_started can_getting_started
ethernet_getting_started ethernet_getting_started
flexray_getting_started flexray_getting_started

View File

@ -1,38 +0,0 @@
============
Installation
============
icsneopy is available on PyPI at https://pypi.org/project/icsneopy/ and can be installed with pip:
.. code-block:: bash
pip install icsneopy
Pre-release
===========
For the latest features, install with the ``--pre`` flag to include pre-release versions:
.. code-block:: bash
pip install --pre icsneopy
Upgrading
=========
To upgrade an existing installation:
.. code-block:: bash
pip install --pre --upgrade icsneopy
Linux udev Rules
================
Linux users may want to install the included udev rules to run icsneopy-based
applications without root. The rules file can be found in the libicsneo source
repository at https://github.com/intrepidcs/libicsneo/.
.. code-block:: bash
sudo cp 99-intrepidcs.rules /etc/udev/rules.d/

View File

@ -89,7 +89,9 @@ public:
.add<FlashPhase>(ChipID::RAD_GALAXY_2_ZMPCHIP_ID, BootloaderCommunication::RAD) .add<FlashPhase>(ChipID::RAD_GALAXY_2_ZMPCHIP_ID, BootloaderCommunication::RAD)
.add<EnterApplicationPhase>(ChipID::RAD_GALAXY_2_ZMPCHIP_ID) .add<EnterApplicationPhase>(ChipID::RAD_GALAXY_2_ZMPCHIP_ID)
.add<ReconnectPhase>() .add<ReconnectPhase>()
.add<FlashPhase>(ChipID::RADGALAXY2_SYSMON_CHIP, BootloaderCommunication::RADGalaxy2Peripheral); .add<FlashPhase>(ChipID::RADGALAXY2_SYSMON_CHIP, BootloaderCommunication::RADGalaxy2Peripheral)
.add<ReconnectPhase>()
.add<WaitPhase>(std::chrono::milliseconds(3000));
} }
protected: protected: