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