-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow external definition of TU_CP210X_PID_LIST #2296
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
look ok, but for configurable settings, this should be rename to follow the convention to CFG_TUH_CDC_CP210X_PID_LIST. I could make the change if you are not familar with the codebase. Also please let me know which PID you succesfully test with, so that it can also be added to default list (which is list of tested devices).
I was able to make it work with PID = You are of course right with the naming convention. The reason I did it this way was so that the change was as unintrusive as possible and to not encourage the use of other PIDs that may or may not work. The change did the trick for me as I could compile with: target_compile_definitions(<redacted> PUBLIC TU_CP210X_PID_LIST=0x800A) If you think this should be a public config option (i.e. Let me know what you think. |
for user configurable macros, it must be renamed to CFG_TUH_CDC_CP210X_PID_LIST. you also need to move the default value #ifndef from cp210x.h to tusb_option.h right after the CFG_TUH_CDC_CP210X. If you are not confident, also the 0x800A seems not very popular serial device (from your list is SPORTident), we can skip adding it to the default. Thanks. |
My thoughts too. I'll follow your suggestions and update the PR 👍 |
467a6ab
to
c4e04d3
Compare
@hathach Updated now. Not sure if there would be value in allowing external definition of FTDI PIDs too, but that should probably be its own PR. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
look good, thank you
yeah, if you happen to work with FTDI, please submit PR as well if possible. |
Describe the PR
Currently, only devices with product IDs
0xEA60
and0xEA70
are recognized by the cp210x driver. I've had some success with one of the other ids from this list.Optimally, it would be better if this is managed internally, but by allowing customization of the list at compile-time this may be more easily tweaked and experimented with in the meantime.
Additional context