-
Older Activity
-
Today, 12:13 PM
Yes I know there are probably at least one issue here, but unclear if only one.
I am also unsure if this is something that I will be able to fix. I have tried a few different things without success.
a) I think...
48 replies | 1461 view(s)
-
Yesterday, 05:19 PM
@Paul and @mcrc and all, Quick update: My gut tells me that the Mouse not working if it is idle for a while is also related to some of the other issues with the followup error...
Sorry I don't yet have answers, but: ...
48 replies | 1461 view(s)
-
Yesterday, 03:46 PM
Paul and all,
On the HUB and the like... I don't have the MIDI, but running into the issue as mentioned in the other thread mentioned in #16
But I wonder if it may be related to the earlier in the posting above,...
18 replies | 524 view(s)
-
Yesterday, 03:25 PM
The easy answer first:
https://smile.amazon.com/dp/B087LXCTFJ
HUB/Keyboard issue -> Other thread for now
EDIT: Yes, it appears like the mouse turns off or the like after several minutes.
I receive one more...
48 replies | 1461 view(s)
-
Yesterday, 12:35 PM
Yes, you can use LittleFS_Program to have a filesystem that is saved at the upper part of the Flash Memory.
With current releases of Teensyduino, This area will be preserved when you reprogram the Teensy. Note:...
4 replies | 114 view(s)
-
Yesterday, 12:10 AM
As for priority hard to say... It may not be fully related to this hub... But simply order of what things stings startup in what order
I will try to take a look on why when it Starts in certain order it ends up...
18 replies | 524 view(s)
-
08-17-2022, 10:13 PM
Paul,
I am not sure if you had a chance to play with this HUB yet?
But I am getting a good HANG with this one. It depends on order of when devices are added.
Trying to debug Logictech G Pro Mouse with...
18 replies | 524 view(s)
-
08-17-2022, 09:59 PM
Sorry I have not tried that yet. I am trying to debug USB HUB issue.
48 replies | 1461 view(s)
-
08-17-2022, 07:11 PM
Not sure, wonder what driver are you using?
Saw this page: https://support.huion.com/en/support/discussions/topics/44001010998
Which shows you can use the digimend driver...
Or you can use theirs which is...
91 replies | 1190 view(s)
-
08-17-2022, 04:05 PM
Sorry sort of sidetracked with keyboard/mouse USB Hub issue.
@mjs513 - Wonder if Linux is sending out a request for the different report ID?
@All - Also, Github is fun ;) :D
Note with Github and working...
91 replies | 1190 view(s)
-
08-17-2022, 01:43 PM
Not sure if there is anything wrong or not with your setup. Several of us played with these a year or two ago and there is some interesting information on them in a few different threads.
like: ...
1 replies | 75 view(s)
-
08-17-2022, 01:05 PM
Quick follow-on notes from previous post:
Later added mouse buttons in the forward:
uint8_t btns = mouse1.getButtons();
Mouse.set_buttons(btns & 1, btns & 4, btns & 2, btns & 8, btns & 16);
The Two...
48 replies | 1461 view(s)
-
08-17-2022, 12:41 AM
Here is a hacked-up sketch I was trying out this afternoon.
It forwards both mouse and keyboard to host... DId not process buttons on mouse yet, but...
48 replies | 1461 view(s)
-
08-16-2022, 06:11 PM
The mouse controller sketch actually has two Keyboard controller objects in it.
One that is claimed by the Wireless adapter.
Edit: Sorry, I am unclear on how the keyboard forward sketch has to do with the keyboard...
48 replies | 1461 view(s)
-
08-16-2022, 03:56 PM
It arrived.
First test plug in the USB cable and try running it with the Mouse Sketch.
So far that runs!
USB Host Testing
960
*** Device KB1 46d:c094 - connected ***
manufacturer: Logitech
product: PRO X...
48 replies | 1461 view(s)
-
08-15-2022, 06:22 PM
@mjs513 - Did you ever get any clues on why the USB Descriptor including PID/VID is different on the T4.x boards
versus T3.6 as well as Windows, Ubuntu including RPI?
As far as I know we are just reporting what the...
7 replies | 154 view(s)
-
08-15-2022, 05:58 PM
Sorry I asked this before with the solution I posted on what was not working?
But again, I did the changes directly using the Pololu version of the library. I have no idea what if anything you have that is different? ...
12 replies | 229 view(s)
-
08-15-2022, 04:54 PM
Sorry, been busy with a related diversion here.
I am curious on how Ubuntu and soon windows startup code on if or how they used the feature reports in their startup code.
So I decided to use my Saleae Logic...
91 replies | 1190 view(s)
-
08-14-2022, 06:19 PM
There are probably 100 ways to do this:
It also depends for example on if you wish for example for the string generated to be fixed length like 16 bytes or do you want leading 0's to be removed.
Here is simple brute...
9 replies | 313 view(s)
-
08-14-2022, 04:56 PM
This morning I am starting to play with seeing if I can enumerate the Report descriptors and later maybe try to query some/all of them.
I put up a new branch: https://github.com/KurtE/WacomController/tree/HIDReports...
91 replies | 1190 view(s)
-
08-14-2022, 12:45 PM
@Rezo - looks good.
My guess is that if you were not trying to write it to two places, you would not need the Stream stuff, but simply print the CrashReport to the SD file.
Also wondering in your case, if you fail...
12 replies | 428 view(s)
-
08-14-2022, 01:10 AM
Quick update to all (mainly mjs513 and lokki),
I have merged in the changes, but I think we probably should maybe look at how we should handle differences in the different tablets.
That is: there are now defined 3...
91 replies | 1190 view(s)
-
08-13-2022, 06:50 PM
I merged in your PR.
Have not looked at the LEDs yet. But I would probably look in wacom_sys.c for references to the word INTUOS5.
Like in wacom_initialize_leds()
And then look at functions like...
91 replies | 1190 view(s)
-
08-13-2022, 01:46 PM
Yes! Sorry about that
91 replies | 1190 view(s)
-
08-13-2022, 12:58 PM
Not sure what you are expecting?
The 2nd parameter for integer types, is the base to use to print, where we have defined:
#define DEC 10
#define HEX 16
#define OCT 8
#define BIN 2
// BYTE was defined in very...
6 replies | 100 view(s)
-
08-13-2022, 12:35 PM
I just pushed up a few changes, that will hopefully help.
The Pen messages were not marked as events to report, so, they did not show up.
I also changed where the report ID was checked from the top-level area to...
91 replies | 1190 view(s)
-
08-12-2022, 07:45 PM
Looks like a fun project.
Right now my 3d printer is dead and my two KickStarter dontations aappear like they may never ship.
Probably should just try to fix my Printerbot... Just the USB connector broke off it.
4 replies | 103 view(s)
-
08-12-2022, 07:37 PM
I went ahead and ordered one. As Amazon today had them for 23% off. Should have it early to mid next week
48 replies | 1461 view(s)
-
08-12-2022, 03:31 PM
If you are interested in fine tuning some of the code.
The processing of the messages are in the library .cpp file in the function: bool WacomController::decodeIntuos5(const uint8_t *data, uint16_t len)
Most of...
91 replies | 1190 view(s)
-
08-12-2022, 02:24 PM
@lokki - I just pushed up some changes for the processing of the stylus messages.
You might try it out and see if it gives some better restults.
Assuming it is processing without going through all of the HID...
91 replies | 1190 view(s)
-
08-11-2022, 09:48 PM
bump bump...
Right now, playing with other things... Having fun with tablets right now.
Probably can try to answer questions. don't have hardware to debug, so you may need to instrument the mouse code and see...
48 replies | 1461 view(s)
-
08-11-2022, 09:33 PM
Sounds good. What right now I am most interested in seeing are the messages that start off: HPID...
So hopefully with debug on: you should see several of them, which will show me the length, the report ID...
So...
91 replies | 1190 view(s)
-
08-11-2022, 07:50 PM
Thanks, there is a little information for me to go query.
I pushed up some changes for processing the 64 byte message
Would be good if you synced up and see if you get anything.
Do you have a stylus? What do...
91 replies | 1190 view(s)
-
08-11-2022, 05:16 PM
@lokki - would be interesting to see the startup of the sketch. For example with my Bamboo one it starts with:
USB Host Testing
960
*** Device HID1 56a:d8 - connected ***
manufacturer: Wacom Co.,Ltd.
...
91 replies | 1190 view(s)
-
08-11-2022, 05:12 PM
That is a strange one!
7 replies | 154 view(s)
-
08-11-2022, 03:56 PM
More information from Ubuntu iusing journalctl
Aug 11 08:48:38 kurte-750-435st kernel: input: Wacom Intuos S Pen as /devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0/0003:056A:0374.0007/input/input32
Aug 11 08:48:38...
91 replies | 1190 view(s)
-
08-11-2022, 03:08 PM
I picked up a replacement small one I mentioned earlier as I think I lost stylus for the old one:
So far the HID information for it:
USB HID Device Info Program
This Sketch shows information about plugged in...
91 replies | 1190 view(s)
-
08-11-2022, 02:21 PM
The Big Buffer version was setup mainly for a few USB To Serial devices whose USB Interface Descriptors are setup to transfer 512 byte records instead of 64, like most of the others do.
My guess it would not have...
2 replies | 61 view(s)
-
08-11-2022, 02:08 PM
@lokki and all, I thought I would mention that we have been hacking away on the Wacom Tablet stuff and making some progress with a few of the tablets.
Instead of continuing to post zip files and the like, I have put...
91 replies | 1190 view(s)
-
08-10-2022, 08:20 PM
Quick note: Today I have received a couple of odd compiler errors one using B9RC1 and now B9RC2
Using board 'teensyMM' from platform in folder:...
300 replies | 35743 view(s)
-
08-10-2022, 07:03 PM
Sorry I am not Paul...
But as for USB Controllers? I am not an expert, but I know on my older machine (now being replaced by my not as older machine), it had a USB 3 controller in it, that was not
100% complete to...
58 replies | 857 view(s)
-
08-10-2022, 04:11 PM
Quick FYI: Arduino just released: IDE RC9.2
Get the feeling maybe they are trying to soon, release the first non-BETA/RC version
300 replies | 35743 view(s)
-
08-10-2022, 04:09 PM
Sorry, have no idea what did not work means...
Also the one warning, I left in as it was there before and the owner should look at it and decide if just adding a default: break;
is OK or was he supposed to something...
12 replies | 229 view(s)
-
08-09-2022, 05:24 PM
My guess is somewhere between 30-45 seconds. I did not time it
3 replies | 75 view(s)
-
08-09-2022, 04:59 PM
Hold the button until you see the one led just blink and then release it, It should then show that LED lit up for awhile as it reprograms it, and then you should get the blink (the other LED) program on it running.
3 replies | 75 view(s)
-
08-09-2022, 03:51 PM
I pushed up a quick and dirty version: https://github.com/KurtE/lsm6-arduino-Teensy-I2C/tree/Wire12
That is for example with the example sketch:
LSM6 imu; // Will use the wire object
LSM6 imu(Wire1); // will use...
12 replies | 229 view(s)
-
08-09-2022, 03:23 PM
I have done a little more hacking since then,
Including change @mjs513 mentioned.
But also then doing some hacking for the longer version, which is still not right, but gives some more tools to help.
That is...
91 replies | 1190 view(s)
-
08-08-2022, 03:41 PM
Quick note on the above: The inputs are coming from two different interfaces.
I am pretty sure the long ones are coming from Interface 1: Here is my dumping of that Descriptor,
HID Report Descriptor (0x20009c90)...
91 replies | 1190 view(s)
-
08-08-2022, 02:17 PM
Hard to say: Note the data I am showing is how do I put it encoded... That is Wacom tablet, plus I am getting some interesting HID parsing stuff, that I don't understand yet...
Note It is not significantly changed...
91 replies | 1190 view(s)
-
08-08-2022, 02:39 AM
I am making some progress... But still more to go:
I am doing some hacking to try to support different output page:
Note I have removed some comments out of here...
Also, would be nice to do this elsewhere. But...
91 replies | 1190 view(s)
-
08-07-2022, 03:58 PM
I am playing some more with the older Intuos tablet and looking at some of the Linux stuff more there lower-level Input project...
I included the current version, that at least is showing some data...
91 replies | 1190 view(s)
-
08-07-2022, 01:58 PM
Note: With T3.6 you do run into issues of having to hit the program button at times. I tried it with IDE2...
But did not lose output.
The interesting thing is, that if you start from a fresh Teensy, when I...
7 replies | 112 view(s)
-
08-07-2022, 01:30 PM
Sorry, I have no idea.
But if you have some examples of a functions that when run from FLASH that causes it to hang/crash, that you can post, maybe something might
give us hints on what is happening.
9 replies | 322 view(s)
-
08-07-2022, 01:20 PM
@defragster,
I am not sure I understand. Probably I have not had enough coffee yet :D
With this are you doing this with TyCommander? and/or are you doing it with the Serial Monitor stuff of Teensyduino?
If...
7 replies | 112 view(s)
-
08-07-2022, 12:58 PM
I don't know of any such guide for using the SD library, there may be one for the SDFat library that SD is now a simple wrapper of.
SD.begin() - I typically only call once. Now I know some have stated that if you...
5 replies | 318 view(s)
-
08-07-2022, 12:23 PM
At this point not sure what to tell you.
If you have something like:
KeyboardController kb1;
KeyboardController kb2;
...
void setup() {
...
kb1.attachPress(OnPress);
kb2.attachPress(OnPress);
...
48 replies | 1461 view(s)
-
08-07-2022, 01:26 AM
Sounds good.
But still might be nice to get the debug data I mentioned from the other thread. Yes, mostly a lot of the same information.
But would be good. To see for example are the HIDParsers grabbing the...
48 replies | 1461 view(s)
-
08-07-2022, 12:02 AM
Yes - I sort of noticed that earlier as well. I know Paul did something to fix it for 1.57 proper but was not sure if it was something in like platfrom.txt or something within their build.
39 replies | 2032 view(s)
-
08-06-2022, 07:15 PM
Sorry, my anti-virus stuff does not allow access to that site to look at it...
Also, in this thread: https://forum.pjrc.com/threads/70824-USB-host-Teensy-4-1-with-Wacom-Intuos5?p=310597&viewfull=1#post310597
I put...
48 replies | 1461 view(s)
-
08-06-2022, 05:47 PM
FYI - I have an Intuos 4 cheapy... And the messages are all different. I think the main stylus was lost, I get some information from stylus from old Bamboo.
I have another arriving next week.
Looking at some...
91 replies | 1190 view(s)
-
08-06-2022, 05:01 PM
Sorry debug in distance:
I updated the code slightly in sketch's header file:
In Particular the message:
No Driver claimed topusage: 10002
Typo: was missing the 0x on the define... I probably should just put the...
91 replies | 1190 view(s)
-
08-06-2022, 03:02 PM
Note WIP, to maybe easier debug this, I extracted the digitizer class for now and created a new version of it as part of sketch (second tab).
Where I hopefully will grab your tablets different top usage values and...
91 replies | 1190 view(s)
-
08-06-2022, 12:54 AM
Again as another reference you might try the teensy_loader_cli: https://github.com/PaulStoffregen/teensy_loader_cli
Which you would need to build on your machine and see if it also causes you to crash or not.
58 replies | 857 view(s)
-
08-05-2022, 10:50 PM
One interesting point that your output shows: 05 0D // Usage Page(d) - Digitizer
Versus the one I have: 06 0D FF // Usage Page(ff0d) - Digitizer
if you look in digitizer.cpp
hidclaim_t...
91 replies | 1190 view(s)
-
08-05-2022, 09:03 PM
@Paul and all - I pushed up an updated version of the sketch I mentioned and the changes into a new Branch and issued a PR:
https://github.com/PaulStoffregen/USBHost_t36/pull/96
91 replies | 1190 view(s)
-
08-05-2022, 06:29 PM
No idea. Works on programs I run.
Might help to know additional information, like see source code or at least a minimal program that makes it hang.
4 replies | 184 view(s)
-
08-05-2022, 06:26 PM
Yes that is the executable
58 replies | 857 view(s)
-
08-05-2022, 04:49 PM
FYI - The bamboo, has information like:
USBDeviceInfo claim this=2000D2BC
****************************************
** Device Level **
vid=56A
pid=374
bDeviceClass = 0
bDeviceSubClass = 0
...
91 replies | 1190 view(s)
-
08-05-2022, 04:44 PM
Note: I have been doing some hacking onto the HID dumper program with a minor update to the HID Parser class, to gain access to the HID Descriptor.
in USBHost_t36.h I added a couple of members like:
class...
91 replies | 1190 view(s)
-
08-05-2022, 12:49 PM
There is a digitizer class that probably should handle it.
You might try the Digitizer example sketch to see if it sees the events or not.
I know we have tried it with a couple of units like a Wacom Bamboo a long...
91 replies | 1190 view(s)
-
08-04-2022, 09:36 PM
With some of these mice, I have purchased different ones. But not sure about $150 mouse 8)
Might be interesting to see what messages it generates when plugged in. and/or turned on. And compare it to others
48 replies | 1461 view(s)
-
08-04-2022, 05:57 PM
Sometimes when you overwrite memory it is hard to know what the ramifications might be. It depends on what was overwritten. For example if something is on the stack (local variable), and you overwrite some variable...
8 replies | 178 view(s)
-
08-04-2022, 03:12 PM
That is what I am guessing. I know it does write out on close, or at least used to, as there was warning about manually editing the file, you need to make sure Arduino is not running...
39 replies | 2032 view(s)
-
08-04-2022, 02:39 PM
Thanks, Paul, as I mentioned I had changed the Preferences for Sketchbook using their preferences dialog. And the GUI was finding the sketches in it...
This time it worked properly... wondering why in the one case...
39 replies | 2032 view(s)
-
08-04-2022, 01:03 PM
Now that TD has been released, I have started playing a little again.
Yesterday I started an experiment I mentioned recently, wondered if we really need multiple wrapper classes for FsFile objects...
So I tried...
1326 replies | 71405 view(s)
-
08-04-2022, 12:45 PM
Let us know when you have swatted enough bugs and pushed up your current stuff.
Interesting I found with Windows 11 and the wsl 2, that indirectly windows can now do some stuff on Linux file systems. That is for...
1326 replies | 71405 view(s)
-
08-04-2022, 12:39 PM
Paul,
Quick note: I ran into interesting issue yesterday, building with current release. Note I built using TSET stuff (Defragster) on SublimeText, but it is using the Arduino 1.8.19 build setup.
Transiting to...
39 replies | 2032 view(s)
-
08-04-2022, 12:28 PM
As Paul said, it is hard to know what is happening without seeing more..
I expanded on Paul's example:
void setup() {
analogWriteFrequency(3, 10000);
analogWrite(3, 120);
analogWriteFrequency(23, 10000);
...
4 replies | 135 view(s)
-
08-04-2022, 02:05 AM
Ouch...
So far, I have not run into that. For example, I put a new MMOD in the breakout board that Paul made.
And I used the test program that @defragster and myself hacked on:
#ifdef ESP_PLATFORM
#define...
33 replies | 886 view(s)
-
08-04-2022, 01:01 AM
Sorry, but hard to know what is going on with this. And details about some of thest things.
For example the Microsoft Mouse, is it it's own hook up that emulates normal wired keyboard? I have some MS combo units...
48 replies | 1461 view(s)
-
08-03-2022, 09:57 PM
I know that the information has been posted recently showing the T4.x ports.
There are actually 4 ports: Ports 1-4 (or in high-speed mode) 6-9. Most of the time on Teensy 4.x we are using the GPIO in high speed...
1 replies | 94 view(s)
-
08-03-2022, 08:29 PM
Again, does not surprise me. Paul - would be better with your own board!
As I mentioned,
Pin 22 I believe is MMOD pin 49 (BATT_VIN3)
Pin 28 is MMOD 4 (3V Enable pin I think)
Where the Enable is one one side...
33 replies | 886 view(s)
-
08-03-2022, 03:56 PM
If it were me some of the things I would try include:
I would probably expand cmdBuffer to something longer like lets say 80 bytes.
I would check that I did not overflow it:
c = Serial.read(); //...
8 replies | 178 view(s)
-
08-03-2022, 02:03 PM
Pin 22 I believe is MMOD pin 49 (BATT_VIN3)
Pin 28 is MMOD 4 (3V Enable pin I think)
33 replies | 886 view(s)
-
08-03-2022, 01:50 PM
Note: One thing I meant to mention, is that there have been a few times, I thought something was not working properly. But then after I removed the MMOD from the board and put it back in, it worked fine.
So,...
33 replies | 886 view(s)
-
08-03-2022, 01:41 PM
Yes - I had not noticed that yesterday, but it does help to let people know something is going on, especially if they have not turned-on verbose output for compiles.
As I mentioned I wish they would fix a few of...
300 replies | 35743 view(s)
-
08-03-2022, 12:35 PM
That sounds like a pain. So far, I have not noticed that, but I don't have that many of them. I have a couple sitting around, that I have not used yet. But again, I mainly just play and could have missed it.
Are...
33 replies | 886 view(s)
-
08-02-2022, 10:11 PM
Might be good, but to be honest, I have not been using the 1.8.19 IDE very much these days. IDE2 is working a lot nicer now. Still have it's warts, especially with the Serial Monitor... But in that case if there is an...
300 replies | 35743 view(s)
-
08-02-2022, 07:57 PM
Note: I am not seeing anywhere in the code posted that sets anything but the buttons.
That is, I am not seeing something like: for (int i=1; i <=4; i++) Joystick.hat(i, -1);
ditto for the others.
If it were me, I...
4 replies | 186 view(s)
-
08-02-2022, 04:42 PM
Quick note: Looks like RC9.1 just was released
Downloading now
300 replies | 35743 view(s)