Lines Matching defs:pbms_softc
233 struct pbms_softc { struct
234 struct uhidev sc_hdev; /* USB parent */
235 int is_geyser2;
236 int sc_datalen; /* Size of a data packet */
237 int sc_bufusage; /* Number of bytes in sc_databuf */
238 int sc_acc[PBMS_SENSORS]; /* Accumulated sensor values. */
239 unsigned char sc_prev[PBMS_SENSORS]; /* Previous sample. */
240 unsigned char sc_sample[PBMS_SENSORS]; /* Current sample. */
241 uint8_t sc_databuf[PBMS_DATA_LEN]; /* Buffer for a data packet */
242 device_t sc_wsmousedev; /* WSMouse device. */
243 int sc_noise; /* Amount of noise. */
244 int sc_theshold; /* Threshold value. */
268 static void reorder_sample(struct pbms_softc *, unsigned char *, unsigned char *); argument