mirror of
https://git.planet-casio.com/Lephenixnoir/gint.git
synced 2025-04-03 17:17:10 +02:00
touch: only enable touchscreen for FXCP400 + fix C++ header support
This commit is contained in:
parent
5e633a9810
commit
b7859a1625
9 changed files with 70 additions and 0 deletions
|
@ -8,6 +8,10 @@
|
|||
extern "C" {
|
||||
#endif
|
||||
|
||||
#include <gint/config.h>
|
||||
|
||||
#if GINT_HW_CP
|
||||
|
||||
/* touch_calib - tounch-screen calibration information */
|
||||
typedef struct {
|
||||
int x_base;
|
||||
|
@ -32,6 +36,8 @@ extern int touch_calib_set(touch_calibration_t *calib);
|
|||
/* touch_next_event() - get the next touchscreen event */
|
||||
extern key_event_t touch_next_event(void);
|
||||
|
||||
#endif /* GINT_HW_CP */
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
|
|
@ -5,6 +5,9 @@
|
|||
|
||||
#include <gint/defs/util.h>
|
||||
#include <gint/cpu.h>
|
||||
#include <gint/config.h>
|
||||
|
||||
#if GINT_HW_CP
|
||||
|
||||
#include "./adconv.h"
|
||||
#include "./i2c.h"
|
||||
|
@ -139,3 +142,5 @@ int touch_adconv_get_dots(
|
|||
cpu_atomic_end();
|
||||
return type;
|
||||
}
|
||||
|
||||
#endif /* GINT_HW_CP */
|
||||
|
|
|
@ -1,7 +1,14 @@
|
|||
#ifndef GINT_TOUCH_ADCONV_H
|
||||
#define GINT_TOUCH_ADCONV_H 1
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#include <gint/defs/types.h>
|
||||
#include <gint/config.h>
|
||||
|
||||
#if GINT_HW_CP
|
||||
|
||||
//---
|
||||
// Internals
|
||||
|
@ -74,4 +81,10 @@ extern int touch_adconv_get_dots(
|
|||
int type
|
||||
);
|
||||
|
||||
#endif /* GINT_HW_CP */
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* GINT_TOUCH_ADCONV_H */
|
||||
|
|
|
@ -5,6 +5,9 @@
|
|||
|
||||
#include <gint/drivers.h>
|
||||
#include <gint/drivers/states.h>
|
||||
#include <gint/config.h>
|
||||
|
||||
#if GINT_HW_CP
|
||||
|
||||
#include "./driver.h"
|
||||
#include "./i2c.h"
|
||||
|
@ -105,3 +108,5 @@ gint_driver_t drv_touch = {
|
|||
.state_size = sizeof(touch_state_t),
|
||||
};
|
||||
GINT_DECLARE_DRIVER(24, drv_touch);
|
||||
|
||||
#endif /* GINT_HW_CP */
|
||||
|
|
|
@ -1,8 +1,15 @@
|
|||
#ifndef GINT_TOUCH_DRIVER_H
|
||||
#define GINT_TOUCH_DRIVER_H 1
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#include <gint/keyboard.h>
|
||||
#include <gint/touch.h>
|
||||
#include <gint/config.h>
|
||||
|
||||
#if GINT_HW_CP
|
||||
|
||||
/* _touch_drv_info() - internal driver information */
|
||||
struct _touch_drv_info
|
||||
|
@ -14,4 +21,10 @@ struct _touch_drv_info
|
|||
} adinfo;
|
||||
};
|
||||
|
||||
#endif /* GINT_HW_CP */
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* GINT_TOUCH_DRIVER_H */
|
||||
|
|
|
@ -8,6 +8,9 @@
|
|||
#include <gint/defs/call.h>
|
||||
#include <gint/cpu.h>
|
||||
#include <gint/intc.h>
|
||||
#include <gint/config.h>
|
||||
|
||||
#if GINT_HW_CP
|
||||
|
||||
#include "./i2c.h"
|
||||
|
||||
|
@ -247,3 +250,5 @@ void i2c_funbind(void)
|
|||
SH7305_I2C.ICCR.ICE = 0;
|
||||
SH7305_I2C.ICDR = 0;
|
||||
}
|
||||
|
||||
#endif /* GINT_HW_CP */
|
||||
|
|
|
@ -1,8 +1,15 @@
|
|||
#ifndef GINT_TOUCH_I2C_H
|
||||
#define GINT_TOUCH_I2C_H 1
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#include <gint/defs/attributes.h>
|
||||
#include <gint/defs/types.h>
|
||||
#include <gint/config.h>
|
||||
|
||||
#if GINT_HW_CP
|
||||
|
||||
//---
|
||||
// User API
|
||||
|
@ -93,4 +100,10 @@ extern void i2c_funbind(void);
|
|||
/* i2c_unbind() - unbind from gint to casio */
|
||||
extern void i2c_unbind(void);
|
||||
|
||||
#endif /* GINT_HW_CP */
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* GINT_TOUCH_I2C_H */
|
||||
|
|
|
@ -2,6 +2,9 @@
|
|||
// gint:touch:i2c_inth - I2C interrupt handlers
|
||||
//---
|
||||
#include <gint/exc.h>
|
||||
#include <gint/config.h>
|
||||
|
||||
#if GINT_HW_CP
|
||||
|
||||
#include "./i2c.h"
|
||||
|
||||
|
@ -164,3 +167,5 @@ void i2c_inth_al(void)
|
|||
{
|
||||
gint_panic(0x10e0);
|
||||
}
|
||||
|
||||
#endif /* GINT_HW_CP */
|
||||
|
|
|
@ -5,6 +5,9 @@
|
|||
|
||||
#include <gint/touch.h>
|
||||
#include <gint/cpu.h>
|
||||
#include <gint/config.h>
|
||||
|
||||
#if GINT_HW_CP
|
||||
|
||||
#include "./i2c.h"
|
||||
#include "./adconv.h"
|
||||
|
@ -88,3 +91,5 @@ key_event_t touch_next_event(void)
|
|||
cpu_atomic_end();
|
||||
return evt;
|
||||
}
|
||||
|
||||
#endif /* GINT_HW_CP */
|
||||
|
|
Loading…
Add table
Reference in a new issue