-
-
Notifications
You must be signed in to change notification settings - Fork 39.8k
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
Add Elite-C to converters #18309
Add Elite-C to converters #18309
Conversation
Co-authored-by: Ryan <fauxpark@gmail.com>
1b1c3ed
to
42deeb8
Compare
#define B5 9U | ||
|
||
// Right side (front) | ||
// RAW |
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.
This is not RAW on Elite-C, it is B0. Can B0 be mapped to 10U or 11U so that the converter can at least succeed on boards that use B0 on Elite-C? Even if it means the user has to jump the pin...
#define B5 PAL_LINE(GPIOB, 9) | ||
|
||
// Right side (front) | ||
// RAW |
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.
You have the same issue here. This is not RAW on Elite-C. The converter will not succeed on boards that use B0
| Pinout | Notes | | ||
|------------|-----------------------------------| | ||
| `promicro` | Includes RX/TX LEDs | | ||
| `elite_c` | Includes bottom row pins, no LEDs | |
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.
Should also include B0
Description
#18239 broke conversions which incorrectly relied on Elite-C pinouts for Pro Micro converters.
Future iteration
Potentially reduce duplication by inferring
promicro
compatibility when targetingelite_c
.Types of Changes
Issues Fixed or Closed by This PR
Checklist