📄 ulib14.c
字号:
/*--------------------------------------------------------------------*/
/* For an INT14 interface, just spit the data bytes out one */
/* at a time. */
/*--------------------------------------------------------------------*/
for (i = 0; i < len; i++)
FossilCntl( FS_XMIT1, data[i] );
traceData( data, len, TRUE );
/*--------------------------------------------------------------------*/
/* Return byte count transmitted to caller */
/*--------------------------------------------------------------------*/
return len;
} /* iswrite */
/*--------------------------------------------------------------------*/
/* i s s e n d b r k */
/* */
/* Send a break signal out the serial port */
/*--------------------------------------------------------------------*/
void issendbrk(unsigned int duration)
{
printmsg(12, "ssendbrk: %d", duration);
/*--------------------------------------------------------------------*/
/* With INT14, we drop DSR for a quarter of a second to */
/* indicate a BREAK sequence. */
/* */
/* (Snuffles doubts this works properly) */
/*--------------------------------------------------------------------*/
modemControl( 0x20, TRUE ); // Raise flag, which lowers DSR
ddelay (250); // Wait a quarter second
modemControl( 0x20, FALSE); // Lower flag, which raises DSR
} /* issendbrk */
/*--------------------------------------------------------------------*/
/* i c l o s e l i n e */
/* */
/* Close the serial port down */
/*--------------------------------------------------------------------*/
void icloseline(void)
{
if (!portActive)
panic();
portActive = FALSE; /* flag port closed for error handler */
modemControl( 0x20, FALSE ); // Lower DSR
ddelay (500);
traceStop();
} /* icloseline */
/*--------------------------------------------------------------------*/
/* i h a n g u p */
/* */
/* Hangup the telephone by dropping DTR. */
/*--------------------------------------------------------------------*/
void ihangup( void )
{
if (!hangupNeeded)
return;
hangupNeeded = FALSE;
modemControl( 0x20, FALSE ); // Lower DSR
ddelay (500); /* Pause half a second */
modemControl( 0x20, TRUE ); // Restore DSR
ddelay (2000); /* Wait two seconds to recover */
printmsg(3,"hangup: complete.");
carrierDetect = FALSE; /* No modem connected yet */
} /* ihangup */
/*--------------------------------------------------------------------*/
/* i S I O S p e e d */
/* */
/* Re-specify the speed of an opened serial port */
/*--------------------------------------------------------------------*/
void iSIOSpeed(BPS bps)
{
union REGS regs; /* Scratch area for interrupt calls. */
regs.h.ah = 0x00; /* Initialize modem */
regs.x.ax = 0x0400; /* Initialize port */
regs.h.bh = 0x00; /* No parity */
regs.h.bl = 0x00; /* One stop bit */
regs.h.ch = 0x03; /* Eight-bit words */
regs.h.cl = bps_table(bps); /* New baud rate */
regs.x.dx = portNum;
int86 (FS_INTERRUPT, ®s, ®s);
ShowModem();
currentBPS = bps;
} /* iSIOSpeed */
/*--------------------------------------------------------------------*/
/* i f l o w c o n t r o l */
/* */
/* Enable/Disable in band (XON/XOFF) flow control */
/*--------------------------------------------------------------------*/
void iflowcontrol( boolean flow )
{
union REGS regs; /* Scratch area for interrupt calls. */
/*
With INT14, don't open and close the port; toggle it in place
by using INT14/AX=800A, which is again Artisoft-specific.
*/
printmsg (4, "flowcontrol: %abling in-band flow control",
(flow ? "en" : "dis"));
regs.x.ax = 0x800A;
regs.h.bl = (unsigned char) (flow ? 2 : 1);
// 2 is hardware, 1 is XON/XOFF
regs.x.dx = portNum;
int86 (FS_INTERRUPT, ®s, ®s);
ShowModem();
} /* iflowcontrol */
/*--------------------------------------------------------------------*/
/* i G e t S p e e d */
/* */
/* Report current speed of communications connection */
/*--------------------------------------------------------------------*/
BPS iGetSpeed( void )
{
return currentBPS;
} /* GetSpeed */
/*--------------------------------------------------------------------*/
/* i C D */
/* */
/* Report if we have carrier detect and lost it */
/*--------------------------------------------------------------------*/
#define FS_dsr_high() (FSStatus() & MDM_DSR)
#define FS_cd_high() (FSStatus() & MDM_CD )
boolean iCD( void )
{
boolean online = carrierDetect;
ShowModem();
carrierDetect = FS_cd_high();
/*--------------------------------------------------------------------*/
/* If we previously had carrier detect but have lost it, we */
/* report it was lost. If we do not yet have carrier detect, */
/* we return success because we may not have connected yet. */
/*--------------------------------------------------------------------*/
if (online)
return carrierDetect && FS_dsr_high();
else
return FS_dsr_high();
} /* iCD */
/*--------------------------------------------------------------------*/
/* S h o w M o d e m */
/* */
/* Report current modem status */
/*--------------------------------------------------------------------*/
#define mannounce(flag, bits, text ) ((flag & bits) ? text : "" )
static void ShowModem( void )
{
static int oldStatus = 0xDEAD;
int status;
if ( debuglevel < 4 )
return;
status = FSStatus();
if (status == oldStatus)
return;
printmsg(0, "ShowModem: %#02x%s%s%s%s%s%s%s%s",
status,
mannounce(MDM_CD, status, "\tCarrier Detect"),
mannounce(MDM_RI, status, "\tRing Indicator"),
mannounce(MDM_DSR, status, "\tData Set Ready"),
mannounce(MDM_CTS, status, "\tClear to Send"),
mannounce(MDM_CDC, status, "\tCD changed"),
mannounce(MDM_TRI, status, "\tRI went OFF"),
mannounce(MDM_DSRC, status, "\tDSR changed"),
mannounce(MDM_CTSC, status, "\tCTS changed"));
oldStatus = status;
} /* ShowModem */
/*--------------------------------------------------------------------*/
/* m o d e m C o n t r o l */
/* */
/* Twiddle a modem control register bit on or off */
/*--------------------------------------------------------------------*/
static void modemControl( char mask, boolean on)
{
union REGS regs; /* Scratch area for interrupt calls. */
regs.x.ax = 0x0500; /* Extended port control: get modem
control register */
regs.x.dx = portNum;
int86(FS_INTERRUPT, ®s, ®s);
regs.x.ax = 0x0501; /* Set modem control register */
regs.x.dx = portNum;
if ( on )
regs.h.bl |= mask; /* Raise flag */
else
regs.h.bl &= ~ mask; /* Lower flag */
int86(FS_INTERRUPT, ®s, ®s);
} /* modemControl */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -