kopia lustrzana https://github.com/Hamlib/Hamlib
Replace #include serial.h with iofunc.h
According to iwyu, to avoid unecessary rebuilds and to reduce the chances of breakages of the build if includes are rearranged, the code that uses serial_open() and ser_close() should include serial.h while the code that uses read_block() write_block() and similar should include iofunc.h, code that uses all of them should include both files. Found with iwyu.pull/1808/head
rodzic
195ed01543
commit
974e619dd2
|
@ -27,7 +27,7 @@
|
|||
#include <hamlib/rig.h>
|
||||
#include "idx_builtin.h"
|
||||
#include "alinco.h"
|
||||
#include <serial.h>
|
||||
#include "iofunc.h"
|
||||
#include "tones.h"
|
||||
#include <misc.h>
|
||||
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
#include <string.h>
|
||||
|
||||
#include "hamlib/rig.h"
|
||||
#include "serial.h"
|
||||
#include "iofunc.h"
|
||||
#include "misc.h"
|
||||
#include "register.h"
|
||||
#include "idx_builtin.h"
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
#include <string.h>
|
||||
|
||||
#include <hamlib/rig.h>
|
||||
#include <serial.h>
|
||||
#include "iofunc.h"
|
||||
|
||||
static int ar3k_set_freq(RIG *rig, vfo_t vfo, freq_t freq);
|
||||
static int ar3k_get_freq(RIG *rig, vfo_t vfo, freq_t *freq);
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
#include <string.h>
|
||||
|
||||
#include "hamlib/rig.h"
|
||||
#include "serial.h"
|
||||
#include "iofunc.h"
|
||||
#include "idx_builtin.h"
|
||||
#include "misc.h"
|
||||
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
#include <stdio.h>
|
||||
|
||||
#include <hamlib/rig.h>
|
||||
#include "serial.h"
|
||||
#include "iofunc.h"
|
||||
#include "idx_builtin.h"
|
||||
|
||||
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
|
||||
#include <hamlib/rig.h>
|
||||
#include "ar7030p.h"
|
||||
#include "serial.h"
|
||||
#include "iofunc.h"
|
||||
|
||||
static enum PAGE_e curPage = NONE; /* Current memory page */
|
||||
static unsigned int curAddr = 65535; /* Current page address */
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <hamlib/rig.h>
|
||||
#include "serial.h"
|
||||
#include "iofunc.h"
|
||||
#include "aor.h"
|
||||
|
||||
#define SR2200_MODES (RIG_MODE_AM|RIG_MODE_FM|RIG_MODE_WFM)
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
#include <string.h>
|
||||
|
||||
#include <hamlib/rig.h>
|
||||
#include "serial.h"
|
||||
#include "iofunc.h"
|
||||
#include "misc.h"
|
||||
#include "register.h"
|
||||
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
#include <string.h>
|
||||
|
||||
#include <hamlib/rig.h>
|
||||
#include "serial.h"
|
||||
#include "iofunc.h"
|
||||
#include "misc.h"
|
||||
#include "register.h"
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
|
||||
#include <hamlib/rig.h>
|
||||
#include <register.h>
|
||||
#include <serial.h>
|
||||
#include "iofunc.h"
|
||||
|
||||
#include "misc.h"
|
||||
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
|
||||
#include "hamlib/rig.h"
|
||||
#include "bandplan.h"
|
||||
#include "serial.h"
|
||||
#include "iofunc.h"
|
||||
#include "tones.h"
|
||||
|
||||
#include "dra818.h"
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
#include <string.h>
|
||||
|
||||
#include <hamlib/rig.h>
|
||||
#include <serial.h>
|
||||
#include "iofunc.h"
|
||||
#include <misc.h>
|
||||
|
||||
#define DEBUG 1
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
#include <math.h>
|
||||
|
||||
#include <hamlib/rig.h>
|
||||
#include <serial.h>
|
||||
#include "iofunc.h"
|
||||
#include <misc.h>
|
||||
#include <token.h>
|
||||
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
#include <string.h>
|
||||
|
||||
#include <hamlib/rig.h>
|
||||
#include <serial.h>
|
||||
#include "iofunc.h"
|
||||
#include <misc.h>
|
||||
|
||||
#define DEBUG 1
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
#include <string.h> /* String function definitions */
|
||||
|
||||
#include <hamlib/rig.h>
|
||||
#include <serial.h>
|
||||
#include "iofunc.h"
|
||||
#include <misc.h>
|
||||
#include <token.h>
|
||||
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
#include <string.h> /* String function definitions */
|
||||
|
||||
#include <hamlib/rig.h>
|
||||
#include <serial.h>
|
||||
#include "iofunc.h"
|
||||
|
||||
#include "trxmanager.h"
|
||||
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
#include <assert.h>
|
||||
|
||||
#include "hamlib/rig.h"
|
||||
#include "serial.h"
|
||||
#include "iofunc.h"
|
||||
#include "misc.h"
|
||||
#include "register.h"
|
||||
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
#include <string.h> /* String function definitions */
|
||||
|
||||
#include <hamlib/rig.h>
|
||||
#include <serial.h>
|
||||
#include "iofunc.h"
|
||||
#include <token.h>
|
||||
#include <register.h>
|
||||
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
#endif
|
||||
|
||||
#include "hamlib/rig.h"
|
||||
#include "serial.h"
|
||||
#include "iofunc.h"
|
||||
#include "misc.h"
|
||||
#include "icom.h"
|
||||
#include "icom_defs.h"
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
#include <math.h>
|
||||
|
||||
#include "hamlib/rig.h"
|
||||
#include "serial.h"
|
||||
#include "iofunc.h"
|
||||
#include "misc.h"
|
||||
#include "cal.h"
|
||||
#include "register.h"
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
#include <string.h> /* String function definitions */
|
||||
|
||||
#include "hamlib/rig.h"
|
||||
#include "serial.h"
|
||||
#include "iofunc.h"
|
||||
#include "register.h"
|
||||
|
||||
#include "kachina.h"
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
#include <string.h>
|
||||
#include <stdio.h>
|
||||
|
||||
#include "serial.h"
|
||||
#include "iofunc.h"
|
||||
#include "elecraft.h"
|
||||
#include "kenwood.h"
|
||||
#include "misc.h"
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
#include <ctype.h> /* character class tests */
|
||||
|
||||
#include "hamlib/rig.h"
|
||||
#include "serial.h"
|
||||
#include "iofunc.h"
|
||||
#include "misc.h"
|
||||
|
||||
#include "kenwood.h"
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
#include <string.h>
|
||||
|
||||
#include <hamlib/rig.h>
|
||||
#include "serial.h"
|
||||
#include "iofunc.h"
|
||||
#include "kenwood.h"
|
||||
#include "elecraft.h"
|
||||
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
#include <string.h> /* String function definitions */
|
||||
|
||||
#include "hamlib/rig.h"
|
||||
#include "serial.h"
|
||||
#include "iofunc.h"
|
||||
#include "misc.h"
|
||||
|
||||
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
#include <string.h>
|
||||
|
||||
#include <hamlib/rig.h>
|
||||
#include "serial.h"
|
||||
#include "iofunc.h"
|
||||
#include "misc.h"
|
||||
#include "register.h"
|
||||
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
|
||||
#include "hamlib/rig.h"
|
||||
#include "misc.h"
|
||||
#include "serial.h"
|
||||
#include "iofunc.h"
|
||||
#include "register.h"
|
||||
#include "idx_builtin.h"
|
||||
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
#include <string.h> /* String function definitions */
|
||||
|
||||
#include "hamlib/rig.h"
|
||||
#include "serial.h"
|
||||
#include "iofunc.h"
|
||||
#include "misc.h"
|
||||
|
||||
#include "ra37xx.h"
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
#include <string.h> /* String function definitions */
|
||||
|
||||
#include "hamlib/rig.h"
|
||||
#include "serial.h"
|
||||
#include "iofunc.h"
|
||||
#include "register.h"
|
||||
#include "token.h"
|
||||
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
#include <string.h> /* String function definitions */
|
||||
|
||||
#include "hamlib/rig.h"
|
||||
#include "serial.h"
|
||||
#include "iofunc.h"
|
||||
#include "register.h"
|
||||
|
||||
#include "rft.h"
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
#include <string.h> /* String function definitions */
|
||||
|
||||
#include "hamlib/rig.h"
|
||||
#include "serial.h"
|
||||
#include "iofunc.h"
|
||||
#include "misc.h"
|
||||
#include "num_stdio.h"
|
||||
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
#include <string.h> /* String function definitions */
|
||||
|
||||
#include "hamlib/rig.h"
|
||||
#include "serial.h"
|
||||
#include "iofunc.h"
|
||||
#include "misc.h"
|
||||
#include "num_stdio.h"
|
||||
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
#include <string.h> /* String function definitions */
|
||||
|
||||
#include "hamlib/rig.h"
|
||||
#include "serial.h"
|
||||
#include "iofunc.h"
|
||||
#include "misc.h"
|
||||
#include "register.h"
|
||||
#include "num_stdio.h"
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
#include <string.h>
|
||||
|
||||
#include "hamlib/rig.h"
|
||||
#include "serial.h"
|
||||
#include "iofunc.h"
|
||||
#include "misc.h"
|
||||
#include "num_stdio.h"
|
||||
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
#include <string.h> /* String function definitions */
|
||||
|
||||
#include <hamlib/rig.h>
|
||||
#include <serial.h>
|
||||
#include "iofunc.h"
|
||||
#include <register.h>
|
||||
|
||||
#include "skanti.h"
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
|
||||
#include "hamlib/rig.h"
|
||||
#include "register.h"
|
||||
#include "serial.h"
|
||||
#include "iofunc.h"
|
||||
|
||||
#include "tapr.h"
|
||||
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
#include <stdlib.h>
|
||||
#include <math.h>
|
||||
|
||||
#include <serial.h>
|
||||
#include "iofunc.h"
|
||||
#include <hamlib/rig.h>
|
||||
#include "tentec2.h"
|
||||
#include "bandplan.h"
|
||||
|
|
|
@ -75,7 +75,7 @@
|
|||
#include <math.h>
|
||||
|
||||
#include <hamlib/rig.h>
|
||||
#include "serial.h"
|
||||
#include "iofunc.h"
|
||||
#include "misc.h"
|
||||
#include "cache.h"
|
||||
#include "orion.h"
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
#include <string.h>
|
||||
|
||||
#include "hamlib/rig.h"
|
||||
#include "serial.h"
|
||||
#include "iofunc.h"
|
||||
#include "num_stdio.h"
|
||||
|
||||
#include "rx331.h"
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
#include <string.h>
|
||||
|
||||
#include "hamlib/rig.h"
|
||||
#include "serial.h"
|
||||
#include "iofunc.h"
|
||||
#include "num_stdio.h"
|
||||
|
||||
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
#include <math.h>
|
||||
|
||||
#include "hamlib/rig.h"
|
||||
#include "serial.h"
|
||||
#include "iofunc.h"
|
||||
#include "register.h"
|
||||
|
||||
#include "tentec.h"
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
#include <unistd.h> /* UNIX standard function definitions */
|
||||
|
||||
#include <hamlib/rig.h>
|
||||
#include "serial.h"
|
||||
#include "iofunc.h"
|
||||
#include "misc.h"
|
||||
|
||||
#include "tt550.h"
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
#include <string.h> /* String function definitions */
|
||||
|
||||
#include "hamlib/rig.h"
|
||||
#include "serial.h"
|
||||
#include "iofunc.h"
|
||||
|
||||
#include "uniden_digital.h"
|
||||
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
#include <stdlib.h>
|
||||
|
||||
#include "hamlib/rig.h"
|
||||
#include "serial.h"
|
||||
#include "iofunc.h"
|
||||
#include "misc.h"
|
||||
#include "register.h"
|
||||
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
#include <string.h> /* String function definitions */
|
||||
|
||||
#include "hamlib/rig.h"
|
||||
#include "serial.h"
|
||||
#include "iofunc.h"
|
||||
#include "misc.h"
|
||||
#include "yaesu.h"
|
||||
#include "frg100.h"
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
|
||||
|
||||
#include "hamlib/rig.h"
|
||||
#include "serial.h"
|
||||
#include "iofunc.h"
|
||||
#include "misc.h"
|
||||
#include "yaesu.h"
|
||||
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
|
||||
|
||||
#include "hamlib/rig.h"
|
||||
#include "serial.h"
|
||||
#include "iofunc.h"
|
||||
#include "misc.h"
|
||||
#include "yaesu.h"
|
||||
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
#include <math.h>
|
||||
|
||||
#include "hamlib/rig.h"
|
||||
#include "serial.h"
|
||||
#include "iofunc.h"
|
||||
#include "yaesu.h"
|
||||
#include "ft100.h"
|
||||
#include "misc.h"
|
||||
|
|
|
@ -33,7 +33,7 @@
|
|||
|
||||
#include "hamlib/rig.h"
|
||||
#include "bandplan.h"
|
||||
#include "serial.h"
|
||||
#include "iofunc.h"
|
||||
#include "misc.h"
|
||||
#include "cache.h"
|
||||
#include "yaesu.h"
|
||||
|
|
|
@ -36,7 +36,7 @@
|
|||
|
||||
#include "hamlib/rig.h"
|
||||
#include "bandplan.h"
|
||||
#include "serial.h"
|
||||
#include "iofunc.h"
|
||||
#include "misc.h"
|
||||
#include "cache.h"
|
||||
#include "yaesu.h"
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
#include <string.h>
|
||||
|
||||
#include "hamlib/rig.h"
|
||||
#include "serial.h"
|
||||
#include "iofunc.h"
|
||||
#include "yaesu.h"
|
||||
#include "ft600.h"
|
||||
#include "misc.h"
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
#include <stdlib.h>
|
||||
|
||||
#include "hamlib/rig.h"
|
||||
#include "serial.h"
|
||||
#include "iofunc.h"
|
||||
#include "misc.h"
|
||||
#include "yaesu.h"
|
||||
#include "tones.h"
|
||||
|
|
|
@ -37,7 +37,7 @@
|
|||
#include <string.h> /* String function definitions */
|
||||
|
||||
#include "hamlib/rig.h"
|
||||
#include "serial.h"
|
||||
#include "iofunc.h"
|
||||
#include "misc.h"
|
||||
#include "cache.h"
|
||||
#include "yaesu.h"
|
||||
|
|
|
@ -39,7 +39,7 @@
|
|||
#include <string.h> /* String function definitions */
|
||||
|
||||
#include <hamlib/rig.h>
|
||||
#include "serial.h"
|
||||
#include "iofunc.h"
|
||||
#include "misc.h"
|
||||
#include "yaesu.h"
|
||||
#include "ft757gx.h"
|
||||
|
|
|
@ -38,7 +38,7 @@
|
|||
#include <string.h> /* String function definitions */
|
||||
|
||||
#include "hamlib/rig.h"
|
||||
#include "serial.h"
|
||||
#include "iofunc.h"
|
||||
#include "misc.h"
|
||||
#include "yaesu.h"
|
||||
#include "ft767gx.h"
|
||||
|
|
|
@ -53,7 +53,7 @@
|
|||
#endif
|
||||
|
||||
#include "hamlib/rig.h"
|
||||
#include "serial.h"
|
||||
#include "iofunc.h"
|
||||
#include "yaesu.h"
|
||||
#include "ft817.h"
|
||||
#include "misc.h"
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
|
||||
#include "hamlib/rig.h"
|
||||
#include "bandplan.h"
|
||||
#include "serial.h"
|
||||
#include "iofunc.h"
|
||||
#include "misc.h"
|
||||
#include "yaesu.h"
|
||||
#include "ft840.h"
|
||||
|
|
|
@ -48,7 +48,7 @@
|
|||
#include <string.h> /* String function definitions */
|
||||
|
||||
#include "hamlib/rig.h"
|
||||
#include "serial.h"
|
||||
#include "iofunc.h"
|
||||
#include "yaesu.h"
|
||||
#include "ft847.h"
|
||||
#include "misc.h"
|
||||
|
|
|
@ -58,7 +58,7 @@
|
|||
#endif
|
||||
|
||||
#include "hamlib/rig.h"
|
||||
#include "serial.h"
|
||||
#include "iofunc.h"
|
||||
#include "yaesu.h"
|
||||
#include "ft857.h"
|
||||
#include "ft817.h" /* We use functions from the 817 code */
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
|
||||
#include "hamlib/rig.h"
|
||||
#include "bandplan.h"
|
||||
#include "serial.h"
|
||||
#include "iofunc.h"
|
||||
#include "misc.h"
|
||||
#include "yaesu.h"
|
||||
#include "ft890.h"
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
#include <string.h>
|
||||
#include "hamlib/rig.h"
|
||||
#include "bandplan.h"
|
||||
#include "serial.h"
|
||||
#include "iofunc.h"
|
||||
#include "newcat.h"
|
||||
#include "yaesu.h"
|
||||
#include "ft891.h"
|
||||
|
|
|
@ -66,7 +66,7 @@
|
|||
#endif
|
||||
|
||||
#include "hamlib/rig.h"
|
||||
#include "serial.h"
|
||||
#include "iofunc.h"
|
||||
#include "yaesu.h"
|
||||
#include "ft897.h"
|
||||
#include "ft817.h" /* We use functions from the 817 code */
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
|
||||
#include "hamlib/rig.h"
|
||||
#include "bandplan.h"
|
||||
#include "serial.h"
|
||||
#include "iofunc.h"
|
||||
#include "misc.h"
|
||||
#include "cal.h"
|
||||
#include "yaesu.h"
|
||||
|
|
|
@ -33,7 +33,7 @@
|
|||
|
||||
#include "hamlib/rig.h"
|
||||
#include "bandplan.h"
|
||||
#include "serial.h"
|
||||
#include "iofunc.h"
|
||||
#include "misc.h"
|
||||
#include "yaesu.h"
|
||||
#include "ft920.h"
|
||||
|
|
|
@ -88,7 +88,7 @@
|
|||
#include <sys/time.h> /* for timeofday call */
|
||||
|
||||
#include "hamlib/rig.h"
|
||||
#include "serial.h"
|
||||
#include "iofunc.h"
|
||||
#include "misc.h"
|
||||
#include "yaesu.h"
|
||||
#include "ft980.h"
|
||||
|
|
|
@ -36,7 +36,7 @@
|
|||
|
||||
#include "hamlib/rig.h"
|
||||
#include "bandplan.h"
|
||||
#include "serial.h"
|
||||
#include "iofunc.h"
|
||||
#include "misc.h"
|
||||
#include "yaesu.h"
|
||||
#include "ft990.h"
|
||||
|
|
|
@ -43,7 +43,7 @@
|
|||
|
||||
#include "hamlib/rig.h"
|
||||
#include "bandplan.h"
|
||||
#include "serial.h"
|
||||
#include "iofunc.h"
|
||||
#include "misc.h"
|
||||
//#include "cache.h"
|
||||
#include "yaesu.h"
|
||||
|
|
|
@ -58,7 +58,7 @@
|
|||
#include <stdlib.h>
|
||||
|
||||
#include "hamlib/rig.h"
|
||||
#include "serial.h"
|
||||
#include "iofunc.h"
|
||||
#include "misc.h"
|
||||
#include "yaesu.h"
|
||||
|
||||
|
|
|
@ -33,7 +33,7 @@
|
|||
#include <string.h>
|
||||
|
||||
#include "hamlib/rig.h"
|
||||
#include "serial.h"
|
||||
#include "iofunc.h"
|
||||
#include "misc.h"
|
||||
#include "yaesu.h"
|
||||
#include "vx1700.h"
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
|
||||
#include "hamlib/rotator.h"
|
||||
#include "hamlib/port.h"
|
||||
#include "serial.h"
|
||||
#include "iofunc.h"
|
||||
#include "register.h"
|
||||
|
||||
#include "celestron.h"
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
|
||||
#include "hamlib/rotator.h"
|
||||
#include "hamlib/rot_state.h"
|
||||
#include "serial.h"
|
||||
#include "iofunc.h"
|
||||
#include "register.h"
|
||||
#include "idx_builtin.h"
|
||||
#include "misc.h"
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
|
||||
#include <hamlib/rotator.h>
|
||||
#include "hamlib/rot_state.h"
|
||||
#include "serial.h"
|
||||
#include "iofunc.h"
|
||||
#include "register.h"
|
||||
#include "idx_builtin.h"
|
||||
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
#include "hamlib/rot_state.h"
|
||||
#include "register.h"
|
||||
#include "idx_builtin.h"
|
||||
#include "serial.h"
|
||||
#include "iofunc.h"
|
||||
|
||||
#include "flir.h"
|
||||
|
||||
|
|
|
@ -39,7 +39,7 @@
|
|||
#include "hamlib/rig.h"
|
||||
#include "misc.h"
|
||||
|
||||
#include "serial.h"
|
||||
#include "iofunc.h"
|
||||
#include "token.h"
|
||||
|
||||
#include "register.h"
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
|
||||
#include "hamlib/rotator.h"
|
||||
#include "hamlib/port.h"
|
||||
#include "serial.h"
|
||||
#include "iofunc.h"
|
||||
|
||||
#define EOM "\r"
|
||||
#define REPLY_EOM "\r"
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
#include "hamlib/rotator.h"
|
||||
#include "hamlib/port.h"
|
||||
#include "hamlib/rot_state.h"
|
||||
#include "serial.h"
|
||||
#include "iofunc.h"
|
||||
#include "misc.h"
|
||||
#include "register.h"
|
||||
#include "idx_builtin.h"
|
||||
|
|
|
@ -34,7 +34,7 @@
|
|||
#include "hamlib/rotator.h"
|
||||
#include "hamlib/port.h"
|
||||
#include "hamlib/rot_state.h"
|
||||
#include "serial.h"
|
||||
#include "iofunc.h"
|
||||
#include "register.h"
|
||||
|
||||
#include "hd1780.h"
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
#include <stddef.h>
|
||||
|
||||
#include "hamlib/rotator.h"
|
||||
#include "serial.h"
|
||||
#include "iofunc.h"
|
||||
#include "register.h"
|
||||
|
||||
#include "rot_ioptron.h"
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
|
||||
#include "hamlib/rotator.h"
|
||||
#include "hamlib/port.h"
|
||||
#include "serial.h"
|
||||
#include "iofunc.h"
|
||||
#include "misc.h"
|
||||
#include "register.h"
|
||||
#include "num_stdio.h"
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
#include "hamlib/rot_state.h"
|
||||
#include <num_stdio.h>
|
||||
|
||||
#include "serial.h"
|
||||
#include "iofunc.h"
|
||||
#include "register.h"
|
||||
|
||||
#include "meade.h"
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
|
||||
#include "hamlib/rotator.h"
|
||||
#include "hamlib/port.h"
|
||||
#include "serial.h"
|
||||
#include "iofunc.h"
|
||||
#include "register.h"
|
||||
#include "num_stdio.h"
|
||||
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
#include <string.h> /* String function definitions */
|
||||
|
||||
#include "hamlib/rotator.h"
|
||||
#include "serial.h"
|
||||
#include "iofunc.h"
|
||||
#include "misc.h"
|
||||
#include "register.h"
|
||||
#include "idx_builtin.h"
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
#include <string.h> /* String function definitions */
|
||||
|
||||
#include "hamlib/rotator.h"
|
||||
#include "serial.h"
|
||||
#include "iofunc.h"
|
||||
#include "register.h"
|
||||
|
||||
#include "saebrtrack.h"
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
|
||||
#include "hamlib/rotator.h"
|
||||
#include "hamlib/port.h"
|
||||
#include "serial.h"
|
||||
#include "iofunc.h"
|
||||
#include "register.h"
|
||||
|
||||
#include "sartek.h"
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
#include <stdbool.h>
|
||||
|
||||
#include "hamlib/rotator.h"
|
||||
#include "serial.h"
|
||||
#include "iofunc.h"
|
||||
#include "register.h"
|
||||
|
||||
#include "satel.h"
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
#include "hamlib/port.h"
|
||||
#include "hamlib/rot_state.h"
|
||||
#include "register.h"
|
||||
#include "serial.h"
|
||||
#include "iofunc.h"
|
||||
|
||||
#define SKYWATCHER_ERROR_CODES_LENGTH 9
|
||||
#define ERROR_CHECK(x) \
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
#include "hamlib/rotator.h"
|
||||
#include "hamlib/port.h"
|
||||
#include "hamlib/rot_state.h"
|
||||
#include "serial.h"
|
||||
#include "iofunc.h"
|
||||
#include "register.h"
|
||||
|
||||
#include "spid.h"
|
||||
|
|
|
@ -67,7 +67,7 @@
|
|||
#include "network.h"
|
||||
#include "rot_conf.h"
|
||||
#include "token.h"
|
||||
#include "serial.h"
|
||||
#include "iofunc.h"
|
||||
|
||||
|
||||
#ifndef DOC_HIDDEN
|
||||
|
|
Ładowanie…
Reference in New Issue