📄 gpsrcvr.h
字号:
#ifndef GPSRCVR_H
#define GPSRCVR_H
// Function definitions
#ifdef VCPP
void (_interrupt _far *Old_Interrupt)(); // PGB MS
void _interrupt _far GPS_Interrupt(void); // PGB MS
#endif
#ifdef BCPP
void interrupt (*Old_Interrupt)(...); // Old IRQ0 interrupt handler
void interrupt GPS_Interrupt(...); // New IRQ0 interrupt handler
#endif
#ifdef DJGPP
_go32_dpmi_seginfo Old_Interrupt;
_go32_dpmi_seginfo GPS_Interrupt;
#endif
void Interrupt_Install(void);
void Interrupt_Remove(void);
void read_rcvr_par(void);
void display(void);
void nav_fix(void);
long near_int(double);
void chan_allocate(void);
void cold_allocate(void);
void write_data_0(void);
void write_data_1(void);
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -