/** * Command definition * * @author sjlee@suprema.co.kr * @see */ /* * Copyright (c) 2006 Suprema Co., Ltd. All Rights Reserved. * * This software is the confidential and proprietary information of * Suprema Co., Ltd. ("Confidential Information"). You shall not * disclose such Confidential Information and shall use it only in * accordance with the terms of the license agreement you entered into * with Suprema. */ #ifndef __BS_COMMAND_H__ #define __BS_COMMAND_H__ // // Command definitions // typedef enum { BS_COM_GI = 0x01, BS_COM_GT = 0x02, BS_COM_ST = 0x03, BS_COM_CSS = 0x04, BS_COM_RS = 0x05, BS_COM_DIS = 0x06, BS_COM_EN = 0x07, BS_COM_UG = 0x08, BS_COM_UGR = 0x09, BS_COM_CLC = 0x10, BS_COM_RLC = 0x11, BS_COM_RL = 0x12, BS_COM_DL = 0x13, BS_COM_GLC = 0x14, BS_COM_EU = 0x20, BS_COM_DU = 0x21, BS_COM_GU = 0x22, BS_COM_GUD = 0x23, BS_COM_RC = 0x30, BS_COM_WC = 0x31, BS_COM_GAS = 0x36, BS_COM_SN = 0x40, BS_COM_SBG = 0x41, BS_COM_SSS = 0x42, BS_COM_SSE = 0x43, BS_COM_SLF = 0x44, BS_COM_ATS = 0x50, BS_COM_DTS = 0x51, BS_COM_GTS = 0x52, BS_COM_AHS = 0x53, BS_COM_DHS = 0x54, BS_COM_GHS = 0x55, BS_COM_AAG = 0x56, BS_COM_DAG = 0x57, BS_COM_GAG = 0x58, BS_COM_DC = 0x60, BS_COM_EC = 0x61, BS_COM_IM = 0x62, // Initialize Module: TC - 0, OC - 1, FC - 2 BS_COM_SFT = 0x63, } BS_COMMAND; #endif