All Projects → b3n4kh → chirp

b3n4kh / chirp

Licence: GPL-3.0 license
A mirror of the popular ham radio software from http://chirp.danplanet.com/projects/chirp/repository

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to chirp

codec2 talkie
Turn your Android phone into Codec2 Walkie-Talkie (Bluetooth/USB/TCPIP KISS modem client for DV digital voice communication)
Stars: ✭ 65 (+170.83%)
Mutual labels:  ham-radio, amateur-radio
1bitSDR
Minimal SDR with Lattice MachXO2 FPGA. And a port to Cyclone3 by Steven Groom
Stars: ✭ 53 (+120.83%)
Mutual labels:  ham-radio, amateur-radio
Faraday-Software
Faraday node software
Stars: ✭ 41 (+70.83%)
Mutual labels:  ham-radio, amateur-radio
aprs-weather-submit
Manually submit weather station information to the APRS-IS network.
Stars: ✭ 17 (-29.17%)
Mutual labels:  ham-radio, amateur-radio
FAPRS
This repo is obsolete. Please use Chickadee
Stars: ✭ 16 (-33.33%)
Mutual labels:  ham-radio, amateur-radio
MasterFrequencyList
Erics Master Frequency lists for RF tuning
Stars: ✭ 43 (+79.17%)
Mutual labels:  ham-radio, amateur-radio
pyhamtools
A Library with Amateur Radio specific Functions and Methods
Stars: ✭ 71 (+195.83%)
Mutual labels:  ham-radio, amateur-radio
pyqso
PyQSO is a contact logging tool for amateur radio operators.
Stars: ✭ 75 (+212.5%)
Mutual labels:  ham-radio, amateur-radio
qdmr
A GUI application for configuring and programming cheap DMR radios under Linux and MacOS X.
Stars: ✭ 72 (+200%)
Mutual labels:  ham-radio
df-aggregator
Networked DFing software that can handle multiple DOA receivers.
Stars: ✭ 47 (+95.83%)
Mutual labels:  ham-radio
tlf
TLF - a console based ham radio contest logger
Stars: ✭ 41 (+70.83%)
Mutual labels:  ham-radio
CubeSatSim
CubeSatSim, the AMSAT CubeSat Simulator
Stars: ✭ 201 (+737.5%)
Mutual labels:  ham-radio
aredn ar71xx
AREDN develop branch porting on top of OpenWRT 19.07.0
Stars: ✭ 68 (+183.33%)
Mutual labels:  amateur-radio
k3ng antenna tuner
Arduino-based Automatic Amateur Radio Antenna Tuner
Stars: ✭ 33 (+37.5%)
Mutual labels:  amateur-radio
Remote-SDR
Remote control of 2 Software Design Radio. Receiver and trasmitter. Based on Adalm-Pluto SDR or RTL-SDR or Hack RF SDR and signal processing using GNU Radio on Orange PI. GUI on a web browser.
Stars: ✭ 61 (+154.17%)
Mutual labels:  ham-radio
remoteRotator
remoteRotator lets you expose a local antenna rotator (azimuth / elevation) to the network
Stars: ✭ 32 (+33.33%)
Mutual labels:  amateur-radio
VnArduino
VNA software with an Arduino
Stars: ✭ 27 (+12.5%)
Mutual labels:  amateur-radio
klog
KLog is a multiplatform free hamradio logger. It runs natively on Linux, macOS and Windows.
Stars: ✭ 31 (+29.17%)
Mutual labels:  amateur-radio
go-dmr
Digital Mobile Radio
Stars: ✭ 53 (+120.83%)
Mutual labels:  ham-radio
wl2k-go
A Winlink framework for Go.
Stars: ✭ 35 (+45.83%)
Mutual labels:  amateur-radio
chirpc: CHIRP Command-line interface
====================================

CHIRP provides a CLI tool (chirpc) to interact with your radio and
memory image files.  It has been designed to be used from programs or
scripts written in other languages, providing facilities for automating
queries and transformations.


WARNING: All modifications are made in-place, overwriting the original
file with new contents.  Be sure to make a backup copy of any files
that you want unchanged.


========
Cookbook
========

This section provides copy-and-paste recipies for accomplishing some
tasks using the CLI.


List Radios
-----------

To see the list of supported <radio> names that can be passed to the
-r/--radio option:

    chirpc --list-radios


Download from Radio
-------------------

To download a new image from your radio:

    chirpc -r <radio> --serial=<port> --mmap=<file> --download-mmap

This will connect to the specified <radio> on <port>, saving the image
obtained from the radio into the specified <file>.


Upload to Radio
---------------

To upload an existing image to your radio:

    chirpc -r <radio> --serial=<port> --mmap=<file> --upload-mmap

This will connect to the specified <radio> on <port>, loading the image
in the specified <file> onto the radio.


List Settings
-------------

For radios that support settings, you can list the current settings
in a saved image:

    chirpc --mmap=<file> --list-settings


Show Memory Channels
--------------------

You can list all current memory channels in a saved image:

    chirpc --mmap=<file> --list-mem

That command only lists the currently programmed channels.  To see the
complete list (including empty channels), add '--verbose'.

To view only a single channel, use the --get-mem option:

    chirpc --mmap=<file> --get-mem <channel>


Set a Memory Channel
--------------------

    chirpc --mmap=<file> --set-mem-name=<name> ... <channel>

See the --help text for a complete list of options that can be used
to configure the channel.  Any settings that are not configured using
a command option will be left unchanged.


Clearing a Memory Channel
-------------------------

You can clear a memory channel, discarding all settings:

    chirpc --mmap=<file> --clear-mem <channel>


Copying a Memory Channel
------------------------

You can copy a memory channel:

    chirpc --mmap=<file> --copy-mem <source_channel> <destination_channel>

Note: The contents of <destination_channel> will be overwritten with
the contents from <source_channel>
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].