2001-02-09 23:11:52 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Very simple test program to check freq convertion --SF
|
2001-02-15 00:02:20 +00:00
|
|
|
* This is mainly to test kHz, MHz, GHz macros and long long support.
|
2001-02-09 23:11:52 +00:00
|
|
|
*/
|
|
|
|
|
2005-01-25 00:22:14 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2001-02-09 23:11:52 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <hamlib/rig.h>
|
2001-02-11 23:25:37 +00:00
|
|
|
#include "misc.h"
|
2001-02-09 23:11:52 +00:00
|
|
|
|
|
|
|
|
|
|
|
int main (int argc, char *argv[])
|
|
|
|
{
|
|
|
|
freq_t f=0;
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
if (argc != 2) {
|
|
|
|
fprintf(stderr,"Usage: %s <freq>\n",argv[0]);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
f = atoi(argv[1]);
|
|
|
|
#endif
|
|
|
|
|
2001-02-11 23:25:37 +00:00
|
|
|
printf("%s\n", hamlib_version);
|
|
|
|
printf("caps size: %d\n", sizeof(struct rig_caps));
|
|
|
|
printf("state size: %d\n", sizeof(struct rig_state));
|
|
|
|
printf("RIG size: %d\n", sizeof(struct rig));
|
2001-02-09 23:11:52 +00:00
|
|
|
printf("freq_t size: %d\n", sizeof(freq_t));
|
|
|
|
printf("shortfreq_t size: %d\n", sizeof(shortfreq_t));
|
|
|
|
|
|
|
|
/* freq on 31bits test */
|
|
|
|
f = GHz(2);
|
2005-01-25 00:22:14 +00:00
|
|
|
printf("GHz(2) = %"PRIll"\n", (long long)f);
|
2001-02-09 23:11:52 +00:00
|
|
|
|
|
|
|
/* freq on 32bits test */
|
|
|
|
f = GHz(4);
|
2005-01-25 00:22:14 +00:00
|
|
|
printf("GHz(4) = %"PRIll"\n", (long long)f);
|
2001-02-09 23:11:52 +00:00
|
|
|
|
|
|
|
/* freq on >32bits test */
|
|
|
|
f = GHz(5);
|
2005-01-25 00:22:14 +00:00
|
|
|
printf("GHz(5) = %"PRIll"\n", (long long)f);
|
2001-02-09 23:11:52 +00:00
|
|
|
|
|
|
|
/* floating point to freq conversion test */
|
|
|
|
f = GHz(1.3);
|
2005-01-25 00:22:14 +00:00
|
|
|
printf("GHz(1.3) = %"PRIll"\n", (long long)f);
|
2001-02-09 23:11:52 +00:00
|
|
|
|
|
|
|
/* floating point to freq conversion precision test */
|
|
|
|
f = GHz(1.234567890);
|
2005-01-25 00:22:14 +00:00
|
|
|
printf("GHz(1.234567890) = %"PRIll"\n", (long long)f);
|
2001-02-09 23:11:52 +00:00
|
|
|
|
|
|
|
/* floating point to freq conversion precision test, with freq >32bits */
|
|
|
|
f = GHz(123.456789012);
|
2005-01-25 00:22:14 +00:00
|
|
|
printf("GHz(123.456789012) = %"PRIll"\n", (long long)f);
|
2001-02-09 23:11:52 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|