-
|
Is it possible to use the SDL1 driver without touch? i'm trying to using this library for a device that has SDL1 support but no touchscreen and while i can get it to build some of the examples i can't get keyboard input working. When trying to use And when trying with This is with the |
Beta Was this translation helpful? Give feedback.
Replies: 5 comments 2 replies
-
|
@Hairo Did you fail to include ??? |
Beta Was this translation helpful? Give feedback.
-
|
@Hairo the first complier erroir is caused by line 75 of GUIslice.h which means you either used DRV_TOUCH_NONE and GSLC_FEATURE_INPUT instead of |
Beta Was this translation helpful? Give feedback.
-
|
@Hairo Ah! I just saw the second error my bad. Paul-- |
Beta Was this translation helpful? Give feedback.
-
|
I think there's some sort of misunderstanding, maybe the wording in my first post was not clear enough, but i did try with Here's my full config file: |
Beta Was this translation helpful? Give feedback.
-
|
@Hairo It looks to me like Calvin never tested GPIO pin input without also using a touch driver. which should allow a compile and give a non-fatal error during init. |
Beta Was this translation helpful? Give feedback.
@Hairo It looks to me like Calvin never tested GPIO pin input without also using a touch driver.
ex22_lnx_input_key.c is using both. However, in looking over the code it looks to me
that it should work.
try adding to your config file:
which should allow a compile and give a non-fatal error during init.
Paul--