blob: 23601014d9c10c2696dcbee2eb6cfd07da12bfac [file] [log] [blame]
/*******************************************************************************
* Copyright (C) 2016, ZIXC Corporation.
*
* File Name: downloader_serial.h
* File Mark:
* Description:
* Others:
* Version: 1.0
* Author: geanfeng
* Date: 2013-03-04
* History 1:
* Date:
* Version:
* Author:
* Modification:
* History 2:
********************************************************************************/
#ifndef _DOWNLOADER_SERIAL_H
#define _DOWNLOADER_SERIAL_H
/****************************************************************************
* Include files
****************************************************************************/
/****************************************************************************
* Macros
****************************************************************************/
/****************************************************************************
* Types
****************************************************************************/
/****************************************************************************
* Constants
****************************************************************************/
/****************************************************************************
* Global Variables
****************************************************************************/
/****************************************************************************
* Function Prototypes
****************************************************************************/
/*******************************************************************************
* Function:downloader_serial_read
* Description:
* Parameters:
* Input:
*
* Output:
*
* Returns:
*
*
* Others:
********************************************************************************/
int downloader_serial_read(char * buffer,unsigned int len);
/*******************************************************************************
* Function:downloader_serial_read_actuallen
* Description:
* Parameters:
* Input:
*
* Output:
*
* Returns:
*
*
* Others:
********************************************************************************/
int downloader_serial_read_actuallen(char * buffer,unsigned int len);
/*******************************************************************************
* Function:downloader_serial_write
* Description:
* Parameters:
* Input:
*
* Output:
*
* Returns:
*
*
* Others:
********************************************************************************/
int downloader_serial_write(const char * buffer,unsigned int len);
/*******************************************************************************
* Function:downloader_serial_write_actuallen
* Description:
* Parameters:
* Input:
*
* Output:
*
* Returns:
*
*
* Others:
********************************************************************************/
int downloader_serial_write_actuallen(const char * buffer,unsigned int len);
#endif