Lines Matching full:byte
42 final static byte MAX_BUFFER_LENGTH = 6;
43 final static byte CONF_BUFFER_LENGTH = 2;
47 final static byte HMC5883L_CONF_REG_A = 0x00;
48 final static byte HMC5883L_CONF_REG_B = 0x01;
51 final static byte HMC5883L_MODE_REG = 0x02;
54 final static byte HMC5883L_X_MSB_REG = 0;
55 final static byte HMC5883L_X_LSB_REG = 1;
56 final static byte HMC5883L_Z_MSB_REG = 2;
57 final static byte HMC5883L_Z_LSB_REG = 3;
58 final static byte HMC5883L_Y_MSB_REG = 4;
59 final static byte HMC5883L_Y_LSB_REG = 5;
60 final static byte DATA_REG_SIZE = 6;
63 final static byte HMC5883L_STATUS_REG = 0x09;
66 final static byte HMC5883L_ID_A_REG = 0x0A;
67 final static byte HMC5883L_ID_B_REG = 0x0B;
68 final static byte HMC5883L_ID_C_REG = 0x0C;
70 final static byte HMC5883L_CONT_MODE = 0x00;
71 final static byte HMC5883L_DATA_REG = 0x03;
74 final static byte GA_0_88_REG = ((byte) (0x00 << 5));
75 final static byte GA_1_3_REG = ((byte) (0x01 << 5));
76 final static byte GA_1_9_REG = ((byte) (0x02 << 5));
77 final static byte GA_2_5_REG = ((byte) (0x03 << 5));
78 final static byte GA_4_0_REG = ((byte) (0x04 << 5));
79 final static byte GA_4_7_REG = ((byte) (0x05 << 5));
80 final static byte GA_5_6_REG = ((byte) (0x06 << 5));
81 final static byte GA_8_1_REG = ((byte) (0x07 << 5));
96 byte[] rx_tx_buf = new byte[MAX_BUFFER_LENGTH];
97 byte[] conf_buf = new byte[CONF_BUFFER_LENGTH];