-
Notifications
You must be signed in to change notification settings - Fork 2.9k
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
BadUSB: Full USB/BLE parameter customization, UI improvements, and more #4136
base: dev
Are you sure you want to change the base?
Conversation
@@ -0,0 +1,325 @@ | |||
#include "ble_hid_service.h" | |||
|
|||
// Based on <lib/ble_profile/extra_services/hid_service.c> |
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.
Why create a new version of it? Why not just update the ble_profile version?
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.
mostly due to API. it would be a breaking change, but also i was under the impression that it is preferred for app developers to keep the [app prefix] [flipper name]
and xor'ed default mac conventions.
if thats not the case, sure this can be added to the default profile. maybe not as a replacement, but provide a way to choose if you want to just provide prefix + mac xor, or full parameter customization.
applications/main/bad_usb/scenes/bad_usb_scene_config_usb_vidpid.c
Outdated
Show resolved
Hide resolved
variable_item_set_current_value_index(item, ble_hid_cfg->pairing); | ||
variable_item_set_current_value_text(item, ble_pairing_names[ble_hid_cfg->pairing]); | ||
|
||
variable_item_list_add(var_item_list, "BLE Device Name", 0, NULL, NULL); |
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.
We can omit BLE from item names since they all are only available in BLE pairing mode
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.
"Remove BLE Pairing" too?
What's new
BLE_ID
andBT_ID
(alias for backwards compatibility), similar toID
command but they set BLE MAC address and device nameID
,BLE_ID
andBT_ID
commands will automatically switch connection mode to their own (if user had selected USB mode, opening a script withBLE_ID
command will switch to BLE mode on first open), can be changed after opening script of courseVerification
BLE_ID 11:22:33:44:55:AA Test123
command and see different values usedID
/BLE_ID
/BT_ID
are not saved to user config)ID
andBLE_ID
/BT_ID
commandChecklist (For Reviewer)