📄 as1.h
字号:
/** ###################################################################
** THIS BEAN MODULE IS GENERATED BY THE TOOL. DO NOT MODIFY IT.
** Filename : AS1.H
** Project : displayboard
** Processor : MC9S12DG128BCFU
** Beantype : AsynchroSerial
** Version : Bean 02.231, Driver 01.08, CPU db: 2.87.238
** Compiler : Metrowerks HC12 C Compiler
** Date/Time : 2005-11-2, 10:18
** Abstract :
** This bean "AsynchroSerial" implements an asynchronous serial
** communication. The bean supports different settings of
** parity, word width, stop-bit and communication speed,
** user can select interrupt or polling handler.
** Communication speed can be changed also in runtime.
** The bean requires one on-chip asynchronous serial channel.
** Settings :
** Serial channel : SCI0
**
** Protocol
** Init baud rate : 9600baud
** Width : 8 bits
** Stop bits : 1
** Parity : none
** Breaks : Disabled
**
** Registers
** Input buffer : SCI0DRL [207]
** Output buffer : SCI0DRL [207]
** Control register : SCI0CR1 [202]
** Mode register : SCI0CR2 [203]
** Baud setting reg. : SCI0BD [200]
** Special register : SCI0SR1 [204]
**
** Input interrupt
** Vector name : INT_SCI0
** Priority : 1
**
** Output interrupt
** Vector name : INT_SCI0
** Priority : 1
**
** Used pins :
** ----------------------------------------------------
** Function | On package | Name
** ----------------------------------------------------
** Input | 63 | PS0_RxD0
** Output | 64 | PS1_TxD0
** ----------------------------------------------------
**
**
** Contents :
** RecvChar - byte AS1_RecvChar(AS1_TComData *Chr);
** SendChar - byte AS1_SendChar(AS1_TComData Chr);
** RecvBlock - byte AS1_RecvBlock(AS1_TComData *Ptr,word Size,word *Rcv);
** SendBlock - byte AS1_SendBlock(AS1_TComData *Ptr,word Size,word *Snd);
** ClearRxBuf - byte AS1_ClearRxBuf(void);
** ClearTxBuf - byte AS1_ClearTxBuf(void);
** GetCharsInRxBuf - word AS1_GetCharsInRxBuf(void);
** GetCharsInTxBuf - word AS1_GetCharsInTxBuf(void);
**
** (c) Copyright UNIS, spol. s r.o. 1997-2002
** UNIS, spol. s r.o.
** Jundrovska 33
** 624 00 Brno
** Czech Republic
** http : www.processorexpert.com
** mail : info@processorexpert.com
** ###################################################################*/
#ifndef __AS1
#define __AS1
/* MODULE AS1. */
#include "Cpu.h"
#define RS485_DE_RE PTT_PTT7
#ifndef __BWUserType_tItem
#define __BWUserType_tItem
typedef struct { /* Item of the index table for possible baudrates */
word div; /* divisior */
byte val; /* values of the prescalers */
} tItem;
#endif
#ifndef __BWUserType_AS1_TError
#define __BWUserType_AS1_TError
typedef union {
byte err;
struct {
bool OverRun : 1; /* OverRun error flag */
bool Framing : 1; /* Framing error flag */
bool Parity : 1; /* Parity error flag */
bool RxBufOvf : 1; /* Rx buffer full error flag */
bool Noise : 1; /* Noise error */
bool Break : 1; /* Break detect */
bool Idle : 1; /* Idle characted */
}errName;
} AS1_TError;
#endif
#ifndef __BWUserType_TDirection
#define __BWUserType_TDirection
typedef enum { /* */
TXD_INPUT,
TXD_OUTPUT
} TDirection;
#endif
#ifndef __BWUserType_AS1_TComData
#define __BWUserType_AS1_TComData
typedef byte AS1_TComData ; /* User type for communication. Size of this type depends on the communication data witdh. */
#endif
#pragma CODE_SEG AS1_CODE /* Code section for this module. */
byte AS1_RecvChar(AS1_TComData *Chr);
/*
** ===================================================================
** Method : AS1_RecvChar (bean AsynchroSerial)
**
** Description :
** If any data received, this method returns one character,
** otherwise it returns error code (it does not wait for
** data). This method is enabled only if the receiver
** property is enabled.
** Parameters :
** NAME - DESCRIPTION
** * Chr - Pointer to received character
** Returns :
** --- - Error code, possible codes:
** ERR_OK - OK
** ERR_SPEED - This device does not work in
** the active speed mode
** ERR_RXEMPTY - No data in receiver
** ERR_OVERRUN - Overrun error is detected
** ERR_FRAMING - Framing error is detected
** ERR_PARITY - Parity error is detected
** ERR_BREAK - Break character is detected
** ERR_IDLE - Idle character is detected
** (this error is hardware specific).
** ===================================================================
*/
byte AS1_SendChar(AS1_TComData Chr);
/*
** ===================================================================
** Method : AS1_SendChar (bean AsynchroSerial)
**
** Description :
** Send one character to the channel. This method is
** available only if the transmitter property is enabled.
** Parameters :
** NAME - DESCRIPTION
** Chr - Character to send
** Returns :
** --- - Error code, possible codes:
** ERR_OK - OK
** ERR_SPEED - This device does not work in
** the active speed mode
** ERR_TXFULL - Transmitter is full
** ===================================================================
*/
byte AS1_RecvBlock(AS1_TComData *Ptr,word Size,word *Rcv);
/*
** ===================================================================
** Method : AS1_RecvBlock (bean AsynchroSerial)
**
** Description :
** If any data received, this method returns the block ofthe
** data and its lenght (and incidental error), otherwise it
** returns error code (it does not wait for data).
** This method is available only if non-zero lenght of the
** input buffer is defined and the receiver property is
** enabled.
** Parameters :
** NAME - DESCRIPTION
** * Ptr - Pointer to the block of received data
** Size - Size of the block
** * Rcv - Pointer to real number of the received
** data
** Returns :
** --- - Error code, possible codes:
** ERR_OK - OK
** ERR_SPEED - This device does not work in
** the active speed mode
** ERR_RXEMPTY - No data in receiver
** ERR_OVERRUN - Overrun error is detected
** ERR_FRAMING - Framing error is detected
** ERR_PARITY - Parity error is detected
** ERR_BREAK - Break character is detected
** ERR_IDLE - Idle character is detected
** (this error is hardware specific).
** ===================================================================
*/
byte AS1_SendBlock(AS1_TComData *Ptr,word Size,word *Snd);
/*
** ===================================================================
** Method : AS1_SendBlock (bean AsynchroSerial)
**
** Description :
** Send a block of characters to the channel.
** This method is available only if non-zero lenght of the
** output buffer is defined and the transmitter property is
** enabled.
** Parameters :
** NAME - DESCRIPTION
** * Ptr - Pointer to the block of data to send
** Size - Size of the block
** * Snd - Pointer to number of data that are sent
** (moved to buffer)
** Returns :
** --- - Error code, possible codes:
** ERR_OK - OK
** ERR_SPEED - This device does not work in
** the active speed mode
** ERR_TXFULL - It was not possible to send
** requested number of bytes
** ===================================================================
*/
byte AS1_ClearRxBuf(void);
/*
** ===================================================================
** Method : AS1_ClearRxBuf (bean AsynchroSerial)
**
** Description :
** Clear receive buffer.
** This method is available only if non-zero lenght of the
** input buffer is defined and the receiver property is
** enabled.
** Parameters : None
** Returns :
** --- - Error code, possible codes:
** ERR_OK - OK
** ERR_SPEED - This device does not work in
** the active speed mode
** ===================================================================
*/
byte AS1_ClearTxBuf(void);
/*
** ===================================================================
** Method : AS1_ClearTxBuf (bean AsynchroSerial)
**
** Description :
** Clear transmit buffer.
** This method is available only if non-zero lenght of the
** output buffer is defined and the receiver property is
** enabled.
** Parameters : None
** Returns :
** --- - Error code, possible codes:
** ERR_OK - OK
** ERR_SPEED - This device does not work in
** the active speed mode
** ===================================================================
*/
word AS1_GetCharsInRxBuf(void);
/*
** ===================================================================
** Method : AS1_GetCharsInRxBuf (bean AsynchroSerial)
**
** Description :
** Return number of characters in the input buffer. This
** method is available only if the receiver property is
** enabled.
** Parameters : None
** Returns :
** --- - Number of characters in the input
** buffer.
** ===================================================================
*/
word AS1_GetCharsInTxBuf(void);
/*
** ===================================================================
** Method : AS1_GetCharsInTxBuf (bean AsynchroSerial)
**
** Description :
** Return number of characters in the output buffer. This
** method is available only if the transmitter property is
** enabled.
** Parameters : None
** Returns :
** --- - Number of characters in the output
** buffer.
** ===================================================================
*/
#pragma CODE_SEG __NEAR_SEG NON_BANKED /* Interrupt section for this module. Placement will be in NON_BANKED area. */
__interrupt void AS1_Interrupt(void);
#pragma CODE_SEG AS1_CODE /* Code section for this module. */
/*
** ===================================================================
** Method : AS1_Interrupt (bean AsynchroSerial)
**
** Description :
** This method is internal. It is used by Processor Expert
** only.
** ===================================================================
*/
void AS1_Init(void);
/*
** ===================================================================
** Method : AS1_Init (bean AsynchroSerial)
**
** Description :
** This method is internal. It is used by Processor Expert
** only.
** ===================================================================
*/
#pragma CODE_SEG DEFAULT /* Change code section to DEFAULT. */
/* END AS1. */
/*
** ###################################################################
**
** This file was created by UNIS Processor Expert 03.33 for
** the Motorola HCS12 series of microcontrollers.
**
** ###################################################################
*/
#endif /* ifndef __AS1 */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -