How To Install uisp on Fedora 34

uisp is Universal In-System Programmer for Atmel AVR and 8051

Introduction

In this tutorial we learn how to install uisp on Fedora 34.

What is uisp

Uisp is utility for downloading/uploading programs to AVR devices. Can also be used for some Atmel 8051 type devices. In addition, uisp can erase the device, write lock bits, verify and set the active segment. For use with the following hardware to program the devices pavr http stk500 Atmel STK500 dapa Direct AVR Parallel Access stk200 Parallel Starter Kit STK200, STK300 abb Altera ByteBlasterMV Parallel Port Download Cable avrisp Atmel AVR ISP (?) bsd http fbprg http dt006 http dasa serial (RESET=RTS SCK=DTR MOSI=TXD MISO=CTS) dasa2 serial (RESET=!TXD SCK=RTS MOSI=DTR MISO=CTS)

We can use yum or dnf to install uisp on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install uisp.

Install uisp on Fedora 34 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

The output should look something like this:

Fedora 34 - x86_64                               20 kB/s | 6.6 kB     00:00
Fedora 34 openh264 (From Cisco) - x86_64        1.4 kB/s | 989  B     00:00
Fedora Modular 34 - x86_64                       68 kB/s | 6.5 kB     00:00
Fedora 34 - x86_64 - Updates                    3.5 kB/s | 6.2 kB     00:01
Fedora Modular 34 - x86_64 - Updates             17 kB/s | 5.9 kB     00:00
Metadata cache created.

After updating yum database, We can install uisp using dnf by running the following command:

sudo dnf -y install uisp

Install uisp on Fedora 34 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

The output should look something like this:

Fedora 34 - x86_64                               20 kB/s | 6.6 kB     00:00
Fedora 34 openh264 (From Cisco) - x86_64        1.4 kB/s | 989  B     00:00
Fedora Modular 34 - x86_64                       68 kB/s | 6.5 kB     00:00
Fedora 34 - x86_64 - Updates                    3.5 kB/s | 6.2 kB     00:01
Fedora Modular 34 - x86_64 - Updates             17 kB/s | 5.9 kB     00:00
Metadata cache created.

After updating yum database, We can install uisp using yum by running the following command:

sudo yum -y install uisp

How To Uninstall uisp on Fedora 34

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

sudo dnf remove uisp

uisp Package Contents on Fedora 34

/usr/bin/uisp
/usr/lib/.build-id
/usr/lib/.build-id/4d
/usr/lib/.build-id/4d/0cdcf8dc7c5a491981e261a7416571d6508844
/usr/share/doc/uisp
/usr/share/doc/uisp/AUTHORS
/usr/share/doc/uisp/CHANGES
/usr/share/doc/uisp/CHANGES.old
/usr/share/doc/uisp/COPYING
/usr/share/doc/uisp/ChangeLog
/usr/share/doc/uisp/ChangeLog-2002
/usr/share/doc/uisp/ChangeLog-2003
/usr/share/doc/uisp/TODO
/usr/share/man/man1/uisp.1.gz

References

Summary

In this tutorial we learn how to install uisp on Fedora 34 using yum and dnf.