1 #ifdef HAVE_STDLIB_H
2 #include <stdlib.h>
3 #endif
4 #include <stdio.h>
5 #include "yagi.h"
6 
usage_first(char * exefile)7 void usage_first(char *exefile)
8 {
9 	fprintf(stderr,"\nYagi-Uda antenna analysis programs, version %.2f\n", version());
10 	fprintf(stderr,"Written by Dr. David Kirkby Ph.D. G8WRB (email:david.kirkby@onetel.net)\n");
11 	fprintf(stderr,"Usage: %s filename elements min_f f max_f step_f diameter\n",exefile);
12 	fprintf(stderr,"       where frequencies are in MHz and diameter is in mm\n");
13 	fprintf(stderr,"'first' is used to define an antenna quickly, according to DL6WU designs.\n");
14 	fprintf(stderr,"It is much faster in use than 'input'\n");
15 		fprintf(stderr,"Example: first 145e20 20 144 145 146 .1 6.3\n\n");
16 		fprintf(stderr,"will make a file '145e20' containing a description of a 20 element DL6WU yagi, \nfor 144-146 MHz, designed at 145MHz, which 'yagi' will calculate in steps of \n0.1MHz. The antenna uses 6.3mm diameter elements.\n");
17 
18 }
19