gpsrcvr(1).h

来自「开源GPS源码」· C头文件 代码 · 共 27 行

H
27
字号
#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
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);


#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?