[go: up one dir, main page]

Menu

Tree [c3f6da] Hamlib-1.1.0 /
 History

HTTPS access


File Date Author Commit
 aor 2000-12-05 Stéphane Fillod, F8CFE Stéphane Fillod, F8CFE [b86475] * all the API functions are now targetted to a ...
 doc 2000-12-05 Stéphane Fillod, F8CFE Stéphane Fillod, F8CFE [b75946] * added NOTES in the distribution
 ft747 2000-12-13 Frank Singleton, VK3FCS Frank Singleton, VK3FCS [c989a7] Removed static stuff from functions.
 ft847 2000-12-20 Frank Singleton, VK3FCS Frank Singleton, VK3FCS [7c74e2] Added ft847_send_priv_cmd(), converted some par...
 icom 2000-12-05 Stéphane Fillod, F8CFE Stéphane Fillod, F8CFE [b86475] * all the API functions are now targetted to a ...
 include 2000-12-05 Stéphane Fillod, F8CFE Stéphane Fillod, F8CFE [b86475] * all the API functions are now targetted to a ...
 lib 2000-10-08 Stéphane Fillod, F8CFE Stéphane Fillod, F8CFE [38181c] Initial release
 src 2000-12-05 Stéphane Fillod, F8CFE Stéphane Fillod, F8CFE [b86475] * all the API functions are now targetted to a ...
 tests 2000-12-13 Frank Singleton, VK3FCS Frank Singleton, VK3FCS [85f684] Added some new freq/mode combinations.
 API 2000-09-14 Stéphane Fillod, F8CFE Stéphane Fillod, F8CFE [2a5763] file creation, basically scratch notes
 AUTHORS 2000-11-04 Stéphane Fillod, F8CFE Stéphane Fillod, F8CFE [ed9e6b] clarification on license
 COPYING 2000-09-14 Stéphane Fillod, F8CFE Stéphane Fillod, F8CFE [2a5763] file creation, basically scratch notes
 INSTALL 2000-11-04 Stéphane Fillod, F8CFE Stéphane Fillod, F8CFE [08cf06] new install notes, ala autoconf
 Makefile.am 2000-12-16 Stéphane Fillod, F8CFE Stéphane Fillod, F8CFE [52a9a4] * remove WANTED from dist
 NEWS 2000-11-17 Stéphane Fillod, F8CFE Stéphane Fillod, F8CFE [f63945] Initial release
 PLAN 2000-11-01 Stéphane Fillod, F8CFE Stéphane Fillod, F8CFE [436b86] * cosmetic changes
 README 2000-10-07 Frank Singleton, VK3FCS Frank Singleton, VK3FCS [c41989] updated lib names for backend to libhamlib-xxxx...
 README.developer 2000-09-24 Frank Singleton, VK3FCS Frank Singleton, VK3FCS [b7a058] updated code snippet example
 README.license 2000-08-19 Frank Singleton, VK3FCS Frank Singleton, VK3FCS [17a0de] included full GPL license
 THANKS 2000-09-19 Stéphane Fillod, F8CFE Stéphane Fillod, F8CFE [72c4e3] Initial release
 TODO 2000-12-05 Stéphane Fillod, F8CFE Stéphane Fillod, F8CFE [ceea07] * more stuff to do
 TODO.skeleton 2000-07-18 Frank Singleton, VK3FCS Frank Singleton, VK3FCS [9419ad] Initial revision
 aclocal.m4 2000-10-09 Frank Singleton, VK3FCS Frank Singleton, VK3FCS [a5bcaa] added post_write_delay
 config.guess 2000-10-01 Stéphane Fillod, F8CFE Stéphane Fillod, F8CFE [34279c] Initial release
 config.sub 2000-10-01 Stéphane Fillod, F8CFE Stéphane Fillod, F8CFE [34279c] Initial release
 configure 2000-11-28 Stéphane Fillod, F8CFE Stéphane Fillod, F8CFE [3e6ad9] * regenerate (libgd check)
 configure.in 2000-11-28 Stéphane Fillod, F8CFE Stéphane Fillod, F8CFE [132cd8] * check for libgd, and build rigmatrix accordingly
 install-sh 2000-10-01 Stéphane Fillod, F8CFE Stéphane Fillod, F8CFE [34279c] Initial release
 ltconfig 2000-10-01 Stéphane Fillod, F8CFE Stéphane Fillod, F8CFE [34279c] Initial release
 ltmain.sh 2000-10-01 Stéphane Fillod, F8CFE Stéphane Fillod, F8CFE [34279c] Initial release
 missing 2000-10-01 Stéphane Fillod, F8CFE Stéphane Fillod, F8CFE [34279c] Initial release
 mkinstalldirs 2000-10-01 Stéphane Fillod, F8CFE Stéphane Fillod, F8CFE [34279c] Initial release

Read Me

hamlib - (C) Frank Singleton 2000 (vk3fcs@ix.netcom.com)

The purpose of this project is to provide stable, flexible,
shared libraries that enable quicker development of Amateur
Radio Equipment Control Applications.
 
Many Amateur Radio Transceivers come with serial interfaces
that allows software to control the radio. This project will
endeavour to provide shared libraries that greatly simplify
the application programmers interaction with radio equipment.
 

The shared libs will provide functions for both radio control,
and data retrieval from the radio.
 
The structure of the libraries will be as follows.

(1)	There will be 1 frontend library "libhamlib" that
	provides the generic API for user applications.

(2)	There will be "n" backend libraries that "wrap" 
	rig specific communications inside frontend API.

(3)	Frontend lib will load (on demand) the appropriate
	backend lib as required. 

Frontend Library
----------------

libhamlib.so -  frontend lib that provides generic API
		for all RIG types. This is what Application
		programmers will "see"

Backend Examples are:
---------------------
 
1.libhamlib-ft747.so will provide connectivity to Yeasu
  FT 747GX Transceiver via a standard API.

2. libhamlib-ft847.so will provide connectivity to Yaesu FT 847
   "Earth Station" via a standard API.
 
3. libhamlib-xxxx.so will provide connectivity to the Wiz-bang
   moon-melter 101A (yikes..)

Hamlib will also enable developers  to develop
professional looking GUI's towards a standard control library
API, and they would not have to worry about the underlying
connection towards physical hardware.
 
Initially serial (RS232) connectivity will be handled, but
I expect that IP (and other) connectivity will follow afterwards. 


Take a look at README.developer for more info.

Also, take a look at http://sourceforge.net/projects/hamlib/
Here you will find a mail list, and  the latest CVS releases.

Have Fun / Frank S. 

  73's de vk3fcs/km5ws