Compare commits
2 Commits
79ff19015a
...
87f45e060e
| Author | SHA1 | Date |
|---|---|---|
|
|
87f45e060e | |
|
|
0cb30cfc5b |
|
|
@ -6,7 +6,7 @@ Prerequisites
|
||||||
=============
|
=============
|
||||||
|
|
||||||
- Python 3.8 or higher
|
- Python 3.8 or higher
|
||||||
- icsneopy library installed
|
- icsneopy installed (see :doc:`installation`)
|
||||||
- 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>`
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,7 @@ Prerequisites
|
||||||
=============
|
=============
|
||||||
|
|
||||||
- Python 3.8 or higher
|
- Python 3.8 or higher
|
||||||
- icsneopy library installed
|
- icsneopy installed (see :doc:`installation`)
|
||||||
- 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>`
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@ FlexRay Getting Started
|
||||||
Prerequisites
|
Prerequisites
|
||||||
=============
|
=============
|
||||||
|
|
||||||
- icsneopy library installed
|
- icsneopy installed (see :doc:`installation`)
|
||||||
- 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)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -5,6 +5,7 @@ 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
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,38 @@
|
||||||
|
============
|
||||||
|
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/
|
||||||
|
|
@ -89,9 +89,7 @@ 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:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue