cmd.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:3k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /****************************************************************************
  2.  *******                                                              *******
  3.  *******           C O M M A N D   P A C K E T   H E A D E R S
  4.  *******                                                              *******
  5.  ****************************************************************************
  6.  Author  : Ian Nandhra
  7.  Date    :
  8.  *
  9.  *  (C) 1990 - 2000 Specialix International Ltd., Byfleet, Surrey, UK.
  10.  *
  11.  *      This program is free software; you can redistribute it and/or modify
  12.  *      it under the terms of the GNU General Public License as published by
  13.  *      the Free Software Foundation; either version 2 of the License, or
  14.  *      (at your option) any later version.
  15.  *
  16.  *      This program is distributed in the hope that it will be useful,
  17.  *      but WITHOUT ANY WARRANTY; without even the implied warranty of
  18.  *      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  19.  *      GNU General Public License for more details.
  20.  *
  21.  *      You should have received a copy of the GNU General Public License
  22.  *      along with this program; if not, write to the Free Software
  23.  *      Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  24.  Version : 0.01
  25.                             Mods
  26.  ----------------------------------------------------------------------------
  27.   Date     By                Description
  28.  ----------------------------------------------------------------------------
  29.  ***************************************************************************/
  30. #ifndef _cmd_h
  31. #define _cmd_h
  32. #ifndef lint
  33. #ifdef SCCS
  34. static char *_rio_cmd_h_sccs = "@(#)cmd.h 1.1" ;
  35. #endif
  36. #endif
  37. #define PRE_EMPTIVE_CMD         0x80
  38. #define INLINE_CMD              ~PRE_EMPTIVE_CMD
  39. #define CMD_IGNORE_PKT          ( (ushort) 0)
  40. #define CMD_STATUS_REQ          ( (ushort) 1)
  41. #define CMD_UNIT_STATUS_REQ     ( (ushort) 2)     /* Is this needed ??? */
  42. #define CMD_CONF_PORT           ( (ushort) 3)
  43. #define CMD_CONF_UNIT           ( (ushort) 4)
  44. #define CMD_ROUTE_MAP_REQ       ( (ushort) 5)
  45. #define CMD_FLUSH_TX            ( (ushort) 6)
  46. #define CMD_FLUSH_RX            ( (ushort) 7)
  47. #define CMD_PARTION_PORT        ( (ushort) 8)
  48. #define CMD_RESET_PORT          ( (ushort) 0x0a)
  49. #define CMD_BOOT_UNIT           ( (ushort) 0x0b)
  50. #define CMD_FOUND_UNIT          ( (ushort) 0x0c)
  51. #define CMD_ATTACHED_RTA_2      ( (ushort) 0x0d)
  52. #define CMD_PROVIDE_BOOT        ( (ushort) 0x0e)
  53. #define CMD_CIRRUS              ( (ushort) 0x0f)
  54. #define FORM_STATUS_PKT         ( (ushort) 1 )
  55. #define FORM_POLL_PKT           ( (ushort) 2 )
  56. #define FORM_LINK_STATUS_PKT    ( (ushort) 3 )
  57. #define CMD_DATA_PORT           ( (ushort) 1 )
  58. #define CMD_DATA                ( (ushort) 2 )
  59. #define CMD_TX_PART             ( (ushort) 2 )
  60. #define CMD_RX_PART             ( (ushort) 3 )
  61. #define CMD_RX_LIMIT            ( (ushort) 4 )
  62. #endif
  63. /*********** end of file ***********/