[PATCH v2 1/2] Added support for WACOM 2.x/ArtZ/Digitizer II compatibility. It does require the driver (easily available via many of the classic macos archives), but it allows a simple way to have an

2024-11-22 Thread Patrick Eads
From: Patrick Eads init Promising polling initiated and data moving cursor now Reverted delete of dev handler for wacom tablet got the y-axis! getting closer more progress. it appears to not quite be WACOM II/IV, but x-axis is controlled by the first 2-3 bytes really? 12-bits is the key

[PATCH v2 2/2] Added support for WACOM 2.x/ArtZ/Digitizer II

2024-11-22 Thread Patrick Eads
From: Patrick Eads streamlined efficiency since setting the xy-values to zero is not the correct way by adding state variables against which the new xy-values can be compared added other buttons Signed-off-by: Patrick Eads --- hw/input/adb-wacom.c | 50

[PATCH] Added support for WACOM 2.x/ArtZ/Digitizer II compatibility. It does require the driver (easily available via many of the classic macos archives), but it allows a simple way to have an absolut

2024-11-19 Thread Patrick Eads
From: Patrick Eads init Promising polling initiated and data moving cursor now Reverted delete of dev handler for wacom tablet got the y-axis! getting closer more progress. it appears to not quite be WACOM II/IV, but x-axis is controlled by the first 2-3 bytes really? 12-bits is the key

[PATCH] Plumbed previously ununsed defaults_enabled in vl.c, s.t. it provides the status of the '-nodefaults' flag to created machines

2024-10-28 Thread Patrick Eads
From: Patrick Eads Signed-off-by: Patrick Eads --- .gitignore | 2 ++ hw/core/machine.c | 15 +++ hw/m68k/q800.c | 15 --- include/hw/boards.h | 1 + system/vl.c | 2 +- 5 files changed, 27 insertions(+), 8 deletions(-) diff --git a