How To Install lpc21isp on Debian 10

Learn how to install lpc21isp on Debian 10 with this tutorial. lpc21isp is In-circuit programming (ISP) of ARM and Cortex microcontrollers

Introduction

In this tutorial we learn how to install lpc21isp on Debian 10.

What is lpc21isp

lpc21isp is:

In-circuit programming (ISP) tool for the NXP(Philips) LPC1100/LPC1300/LPC1700/LPC2000 series ARM7/Cortex-M0/ Cortex-M3 microcontrollers.

There are three methods to install lpc21isp on Debian 10. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install lpc21isp Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install lpc21isp using apt-get by running the following command:

sudo apt-get -y install lpc21isp

Install lpc21isp Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install lpc21isp using apt by running the following command:

sudo apt -y install lpc21isp

Install lpc21isp Using aptitude

If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Debian. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install lpc21isp using aptitude by running the following command:

sudo aptitude -y install lpc21isp

How To Uninstall lpc21isp on Debian 10

To uninstall only the lpc21isp package we can use the following command:

sudo apt-get remove lpc21isp

Uninstall lpc21isp And Its Dependencies

To uninstall lpc21isp and its dependencies that are no longer needed by Debian 10, we can use the command below:

sudo apt-get -y autoremove lpc21isp

Remove lpc21isp Configurations and Data

To remove lpc21isp configuration and data from Debian 10 we can use the following command:

sudo apt-get -y purge lpc21isp

Remove lpc21isp configuration, data, and all of its dependencies

We can use the following command to remove lpc21isp configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge lpc21isp

Dependencies

lpc21isp have the following dependencies:

References

Summary

In this tutorial we learn how to install lpc21isp package on Debian 10 using different package management tools: apt, apt-get and aptitude.