-
-
Notifications
You must be signed in to change notification settings - Fork 3.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
feat: Add support for switching to previously used bluetooth profile #2497
base: main
Are you sure you want to change the base?
Conversation
9419703
to
6915982
Compare
Regarding saving to memory, I think if you could get it to save both the current and previous profiles in a single write action to the same block, then it would be worth doing so. I'm not sure if that's possible, though, not looked into it. |
On going through this again, could probably add a test for this. |
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.
Thanks for the PR! Generally like it, just a few comments on the implementation.
@@ -33,6 +33,11 @@ static const struct behavior_parameter_value_metadata no_arg_values[] = { | |||
.type = BEHAVIOR_PARAMETER_VALUE_TYPE_VALUE, | |||
.value = BT_PRV_CMD, | |||
}, | |||
{ | |||
.display_name = "Previously Used Profile", |
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.
.display_name = "Previously Used Profile", | |
.display_name = "Previously Selected Profile", |
#define BT_PRV_DEV_CMD 3 | ||
#define BT_SEL_CMD 4 | ||
#define BT_CLR_ALL_CMD 5 | ||
#define BT_DISC_CMD 6 |
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.
Add this at the end with a value of 6 please, otherwise this will break folks using ZMK Studio who've saved these few commands to their keymap.
Also, I am not a huge fan of including DEV
in the naming here, versus "selection" as a noun instead. I think BT_PRV_SEL_CMD
is preferable.
@@ -23,6 +23,7 @@ | |||
void zmk_ble_clear_bonds(void); | |||
int zmk_ble_prof_next(void); | |||
int zmk_ble_prof_prev(void); | |||
int zmk_ble_prof_prev_dev(void); |
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.
int zmk_ble_prof_prev_dev(void); | |
int zmk_ble_prof_prev_selection(void); |
This is a PR to make it possible to switch to the index of the previously used profile. This is a feature I will need for my project (swapping between RPi and computer)
There are previous PRs offering this functionality, but they have comments that they didn't bother to fix, so I did it in this one.
I switched LAST_DEV to PRV_DEV as I think LAST could be misinterpreted to mean the last index of the list of profiles.
I also didn't add flash save for the previous_profile as exists for the active_profile. Instead I added initialize to 0, so each time you boot, the PRV_DEV will take you to index 0 for the first time, unless you switch profiles before pressing it with the other profile options. Maybe it should be saved but I thought it was a bit overkill for this, tell me if you want me to add this feature.
Fixes #767