/* * This file is subject to the terms of the GFX License. If a copy of * the license was not distributed with this file, you can obtain one at: * * http://ugfx.org/license.html */ #ifndef _GINPUT_LLD_MOUSE_BOARD_H #define _GINPUT_LLD_MOUSE_BOARD_H // Resolution and Accuracy Settings #define GMOUSE_MAX11802_PEN_CALIBRATE_ERROR 8 #define GMOUSE_MAX11802_PEN_CLICK_ERROR 6 #define GMOUSE_MAX11802_PEN_MOVE_ERROR 4 #define GMOUSE_MAX11802_FINGER_CALIBRATE_ERROR 14 #define GMOUSE_MAX11802_FINGER_CLICK_ERROR 18 #define GMOUSE_MAX11802_FINGER_MOVE_ERROR 14 // Register values to set #define MAX11802_MODE 0x0E // Direct conversion with averaging #define MAX11802_AVG 0x55 #define MAX11802_TIMING 0x77 #define MAX11802_DELAY 0x55 // How much extra data to allocate at the end of the GMouse structure for the board's use #define GMOUSE_MAX11802_BOARD_DATA_SIZE 0 static inline void init_board(GMouse* m) { } static inline bool_t getpin_pressed(GMouse* m) { } static inline void aquire_bus(GMouse* m) { } static inline void release_bus(GMouse* m) { } /** * Send command (with parameter) to the MAX11802 * * Return the second byte read in case of interest */ static inline uint8_t write_command(GMouse* m, uint8_t command, uint8_t value) { } /** * Send command (no parameter) to the MAX11802 * * Return the byte read in case of interest */ static inline uint8_t gfintWriteCommand(GMouse* m, uint8_t command) { } /* * Read 2 bytes as 16-bit value (command to read must have been sent previously) * Note: Analog value is in bits 15..4, tags (reading status) in bits 3..0 */ static inline uint16_t read_value(GMouse* m) { } #endif /* _GINPUT_LLD_MOUSE_BOARD_H */