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...
Type: Posts; User: KurtE
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...
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...
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...
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...
@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...
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...
At this point not sure what to tell you.
If you have something like:
KeyboardController kb1;
KeyboardController kb2;
...
void setup() {
...
kb1.attachPress(OnPress);
...
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...
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.
Sorry, my anti-virus stuff does not allow access to that site to look at it...
Also, in this thread:...
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.
...
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...
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...
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...
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...
@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
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.
Yes that is the executable
FYI - The bamboo, has information like:
USBDeviceInfo claim this=2000D2BC
****************************************
** Device Level **
vid=56A
pid=374
bDeviceClass = 0
...
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...
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...
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...
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...
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...
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...
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...
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...
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...
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);
...
Ouch...
So far, I have not run into that. For example, I put a new MMOD in the breakout board that Paul made.
29099
And I used the test program that @defragster and myself hacked on:
...
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...
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...
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)
29094
Where...
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 = ...
Pin 22 I believe is MMOD pin 49 (BATT_VIN3)
Pin 28 is MMOD 4 (3V Enable pin I think)
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...
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...
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...
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...
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....
Quick note: Looks like RC9.1 just was released
Downloading now
Sorry, I am not sure with the information here, on what suggestions to tell you.
You might try the _t3n version of the library to see if it works any differently.
writeRect is more or less the...
Sorry, again I am probably not much help here, other than ask questions and maybe throw a dart or two. And maybe it might help to localize down the issue.
Is this a new T4? Or have you had it for...
Note the original port was from about a year and ago. The new post today appeared to be Spam.
Maybe we should back up some here, and get back to basics.
That is, which LED is blinking? RED or Orange?
29075
If Red one near USB port than the number of blinks might mean the stuff...
Sorry, I don't have your setup, so cannot test.
But the things I would try include moving the calls:
musicPlayer.setVolume(20, 20);
/***** Two interrupt options! *******/
// This...
There are 3 different sets of USB sources, the one you are mentioning for Teensy 2.x
The sources for Teensy LC and 3.x are in cores\teensy3
So for example, the descriptors are defined in...
I have now tried with two different Sparkfun adapters.
One that is not level shifted: https://www.sparkfun.com/products/544
And another that is: https://www.sparkfun.com/products/13743
29070
I...
Sorry I am not sure what else I can tell you:
The USB Keyboard link I linked to earlier, shows the key codes that are understood by the USB Keyboard code. The code on press and release will figure...
If it were me, I would use a different SD Adapter. One that does not have level shifters on to convert 5v signals to 3.3v...
Although I have found that some of them may work fine. Are you...