Embsysregview - Eclipse plugin and how to install it

In the last couple of days, I was trying to install Embsysregview for my Pixracer (STM32F427VI) to do debugging with Black Magic Probe, but it wasn't possible to install it because there is a problem inside download links when you trying to do it over Eclipse marketplace.




Image 1 - Error when you try to install Embsysregview from Eclipse market

 
Error in text format:

An error occurred while collecting items to be installed
session context was:(profile=epp.package.cpp, phase=org.eclipse.equinox.internal.p2.engine.phases.Collect, operand=, action=).
Artifact not found: http://embsysregview.sourceforge.net/update/plugins/org.eclipse.cdt.embsysregview_0.2.6.jar.
Artifact not found: http://embsysregview.sourceforge.net/update/plugins/org.eclipse.cdt.embsysregview.data_0.2.6.r191.jar.
http://embsysregview.sourceforge.net/update/plugins/org.eclipse.cdt.embsysregview_0.2.6.jar
http://embsysregview.sourceforge.net/update/plugins/org.eclipse.cdt.embsysregview.data_0.2.6.r191.jar
http://embsysregview.sourceforge.net/update/features/org.eclipse.cdt.embsysregview.data_feature_0.2.6.r191.jar
Artifact not found: http://embsysregview.sourceforge.net/update/features/org.eclipse.cdt.embsysregview.data_feature_0.2.6.r191.jar.
Artifact not found: http://embsysregview.sourceforge.net/update/features/org.eclipse.cdt.embsysregview_feature_0.2.6.jar.
http://embsysregview.sourceforge.net/update/features/org.eclipse.cdt.embsysregview_feature_0.2.6.jar


The solution is to download it locally and then install it.
You can download the ZIP file from this link: embsysregview.zip

Or by running these commands on Linux:

mkdir embsysregview
cd embsysregview 
wget http://embsysregview.sourceforge.net/update/site.xml 
mkdir -p features plugins 
pushd features 
wget http://downloads.sourceforge.net/embsysregview/org.eclipse.cdt.embsysregview_feature_0.2.6.jar 
wget http://downloads.sourceforge.net/embsysregview/org.eclipse.cdt.embsysregview.data_feature_0.2.6.r191.jar 
popd 
pushd plugins 
wget http://downloads.sourceforge.net/embsysregview/org.eclipse.cdt.embsysregview_0.2.6.jar 
wget http://downloads.sourceforge.net/embsysregview/org.eclipse.cdt.embsysregview.data_0.2.6.r191.jar 
popd


Inside Eclipse, you need to do as it shown at image 2 and 3.

Help->Install New Software ->Add->Local

then select downloaded or unpacked embsysregview folder

Image 2 - Select folder with the plugin

Image 3 - Select all for install 


Image 4 - Plugin in action

Comments

Popular posts from this blog

AUTOSAR and CRC calculation

Flashing/debugging/running code at external memory in the memory-mapped mode

Debugging EK-TM4C123GXL with Visual Studio Code on Linux