John Ronan | 13 May 2007 13:30
Favicon

FT-847.

Morning,

Its raining out so I had the opportunity to get some stuff working  
this morning.  I installed hamlib 1.2.6 shortly after it came out but  
never got a chance to do anything.  I have it back installed and  
running again.

Now, how could I contribute? I've not been paying much attention to  
the list of late, so I'm not sure what the status is.

Regards
de John
EI7IG
--
John Ronan <jronan <at> tssg.org>, +353-51-302938
Telecommunications Software &  Systems Group,  http://www.tssg.org

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
Brian Morrison | 13 May 2007 14:31
Face
Picon

Building RPMs on FC6 from spec file

A quick question to anyone that knows, I've just rebuilt the hamlib
rpms using v1.2.6.1 source but am finding that I need to edit the spec
file to remove the %{version} macros from the libhamlib and libhamlib++
entries in the %files section.

I don't see why this should be, but for some reason the version string
isn't being inserted into the library names during compilation. I can't
see any obvious arguments that should be passed to rpmbuild to do this,
so any ideas why I'm seeing this problem?

TIA

--

-- 

Brian Morrison

   "Arguing with an engineer is like wrestling with a pig in the mud;
    after a while you realize you are muddy and the pig is enjoying it."

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
Nate Bargmann | 14 May 2007 02:26

Re: FT-847.

On Sunday 13 May 2007 06:30:29 John Ronan wrote:
> Morning,
>
> Its raining out so I had the opportunity to get some stuff working
> this morning.  I installed hamlib 1.2.6 shortly after it came out but
> never got a chance to do anything.  I have it back installed and
> running again.
>
> Now, how could I contribute? I've not been paying much attention to
> the list of late, so I'm not sure what the status is.

Spring time brings a lot of projects my way (and I'm sure that's true for 
everyone), so I haven't been seeing much happening in the way of commits to 
CVS.  When you have your patches ready, just post them to this list.  The 
complete file or a unified diff is fine.  I'll get them committed.

73, de Nate >>

--

-- 
 Wireless | Amateur Radio Station N0NB          |  Successfully Microsoft
  Amateur radio exams; ham radio; Linux info  <at>   | free since January 1998.
             http://www.qsl.net/n0nb/           |  "Debian, the choice of
             My Kawasaki KZ-650 SR  <at>             |     a GNU generation!"
        http://www.networksplus.net/n0nb/       |   http://www.debian.org

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
(Continue reading)

John Ronan | 14 May 2007 11:07
Favicon

Re: FT-847.


On 14 May 2007, at 01:26, Nate Bargmann wrote:

> On Sunday 13 May 2007 06:30:29 John Ronan wrote:
>> Morning,
>>
>> Its raining out so I had the opportunity to get some stuff working
>> this morning.  I installed hamlib 1.2.6 shortly after it came out but
>> never got a chance to do anything.  I have it back installed and
>> running again.
>>
>> Now, how could I contribute? I've not been paying much attention to
>> the list of late, so I'm not sure what the status is.
>
> Spring time brings a lot of projects my way (and I'm sure that's  
> true for
> everyone), so I haven't been seeing much happening in the way of  
> commits to
> CVS.  When you have your patches ready, just post them to this  
> list.  The
> complete file or a unified diff is fine.  I'll get them committed.
>
Ha ha.. patches... are you sure you want them from me :).

I'll go through the README.betatester stuff first.. make sure it all  
works as described.

I'll have a browse around the code first, see what is missing that I  
would find useful.

(Continue reading)

BRIAN FITZGERALD | 15 May 2007 23:52
Picon
Favicon

pcr1500

support for icom pcr1500 please :-)
-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
Hamlib-developer mailing list
Hamlib-developer <at> lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/hamlib-developer
Steve & Ginny Grudzinski | 17 May 2007 20:34
Picon

Hamlib for windows

Greetings,

I am currently not a developer, but soon hope to be. I am for now an end
user trying to get hamlib working. I have had contact with Alex and he has
been helpful, but he says that he is not a windows person, so I put this out
to the windows developers.

I am trying to write a small utility program to talk with my FT-817. I am
using a windows XP environment with Borland Builder v5 C++ as my compiler.
It is not visual C++.

I tried linking the libmamlib-2.lib file just to find out that it was a
visual C++ file. I changed to libhamlib.dll.a. This compiled and linked with
no errors, however I did not try and make any calls. 

When I add the rig.h include to my source file, I start receiving the
following errors. These are not all the errors, but a sample. 

[C++ Error] stdio.h(362): E2238 Multiple declaration for 'std'
[C++ Error] stdio.h(362): E2141 Declaration syntax error using std::FILE; 
    using std::FILE;

[C++ Error] rig.h(1043): E2303 Type name expected 
    rig_model_t rig_model; /*!< Rig model. */ 

[C++ Error] rig.h(1043): E2139 Declaration missing ; 
    rig_model_t rig_model; /*!< Rig model. */ 

[C++ Error] rig.h(1428): E2141 Declaration syntax error 
    extern HAMLIB_EXPORT(RIG *) rig_init rig_model_t rig_model; 

/*!< Rig model. */ HAMLIB_PARAMS((rig_model_t rig_model)); 

[C++ Error] rig.h(1429): E2337 Only one of a set of overloaded functions can
be "C" 
    extern HAMLIB_EXPORT(int) rig_open HAMLIB_PARAMS((RIG *rig)); 

>From the example it seems that I only need to include the rig.h file, link
the library, and make sure that the dll's are in the same directory. Then I
just write the code to access the functions. Sounds simple, but I can't seem
to get it working.

Can anyone help?
Thanks, 
Steve 

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
Thomas Beierlein | 21 May 2007 20:18
Picon
Favicon
Gravatar

Howto update the description of a supported radio?

At the hamlib website we have some information about the supported radios and 
their properties under 

http://hamlib.sourceforge.net/sup-info/support/modelxyz.txt

Does anybody know how to update these? The information about the TS570 is quite
dated as I did some work in the last year. Maybe we should also check that the
other rig descriptions are not dated.

Nate, how are the plans for the next minor release (1.2.6.2)? 

73, de Tom DL1JBE.

--

-- 
"Do what is needful!"
Ursula LeGuin: Earthsea
--

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
Martin AA6E | 21 May 2007 20:27

Re: Howto update the description of a supported radio?

Thomas Beierlein wrote:
> At the hamlib website we have some information about the supported radios and 
> their properties under 
> 
> http://hamlib.sourceforge.net/sup-info/support/modelxyz.txt
> 
> Does anybody know how to update these? The information about the TS570 is quite
> dated as I did some work in the last year. Maybe we should also check that the
> other rig descriptions are not dated.
> 
> Nate, how are the plans for the next minor release (1.2.6.2)? 
> 
> 73, de Tom DL1JBE.
> 

I think there is (was) a semi-automatic procedure to update the rig 
support info on the web - Stephane must have done it.  Does Nate have info?

As web-maintainer, I could do updates based on info anyone gives me, but 
I don't want to make changes that get overwritten at a later time.

73 Martin AA6E

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
Thomas Beierlein | 21 May 2007 20:49
Picon
Favicon
Gravatar

update of rig description

Hi Martin,

> 
> I think there is (was) a semi-automatic procedure to update the rig 
> support info on the web - Stephane must have done it.  Does Nate have info?

It seems that the page is the normal output of the 'rigctl -m xxx 1' command.
But I do not know how the referring page is generated. At least the rig model,
the version and the state (beta,...) is cited there. 

> 
> As web-maintainer, I could do updates based on info anyone gives me, but 
> I don't want to make changes that get overwritten at a later time.
> 
That makes sense. So let us see if Nate has some info about.

73, de Tom.

--

-- 
"Do what is needful!"
Ursula LeGuin: Earthsea
--

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
Stephane Fillod | 21 May 2007 22:47
Picon
Favicon

Re: Howto update the description of a supported radio?

Martin AA6E wrote:
> Thomas Beierlein wrote:
> > At the hamlib website we have some information about the supported radios and 
> > their properties under 
> > 
> > http://hamlib.sourceforge.net/sup-info/support/modelxyz.txt
> > 
> > Does anybody know how to update these? The information about the TS570 is quite
> > dated as I did some work in the last year. Maybe we should also check that the
> > other rig descriptions are not dated.
> > 
> > Nate, how are the plans for the next minor release (1.2.6.2)? 
> > 
> > 73, de Tom DL1JBE.
> > 
> 
> I think there is (was) a semi-automatic procedure to update the rig 
> support info on the web - Stephane must have done it.  Does Nate have info?

The procedure was partly commited to CVS. I've just cleaned it up, and
committed the last bit right now. So a "cvs update" in tests/ subdir will be
needed. Note also that you will need the libgd-dev package for rigmatrix
to compile.

> As web-maintainer, I could do updates based on info anyone gives me, but 
> I don't want to make changes that get overwritten at a later time.

Okay, so here's the procedure:

1. Compile hamlib locally
2. cd tests ; make rigmatrix.html
3. scp -r sup-info/* username <at> shell.sourceforge.net:/home/groups/h/ha/hamlib/htdocs/sup-info/.

I've just updated the files. Tom, can you check if the updated
information shows up? From now on, the procedure should be done upon
each hamlib release. Nate, do you have a schedule for the next one?

73
--

-- 
Stephane - F8CFE

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/

Gmane