Some badkb cleanup

This commit is contained in:
Willy-JL
2023-06-10 23:43:17 +01:00
parent 5e810dae88
commit 77cec31cc9
3 changed files with 1 additions and 4 deletions
-1
View File
@@ -1,6 +1,5 @@
#pragma once
#include "bad_kb_app.h"
#include "scenes/bad_kb_scene.h"
#include "helpers/ducky_script.h"
@@ -121,7 +121,7 @@ typedef enum {
} BadKbAppError;
typedef struct {
char bt_name[BAD_KB_ADV_NAME_MAX_LEN + 1];
char bt_name[BAD_KB_ADV_NAME_MAX_LEN];
uint8_t bt_mac[BAD_KB_MAC_ADDRESS_LEN];
FuriHalUsbInterface* usb_mode;
GapPairing bt_mode;
@@ -40,11 +40,9 @@ void bad_kb_scene_config_layout_on_enter(void* context) {
bool bad_kb_scene_config_layout_on_event(void* context, SceneManagerEvent event) {
UNUSED(context);
UNUSED(event);
// BadKbApp* bad_kb = context;
return false;
}
void bad_kb_scene_config_layout_on_exit(void* context) {
UNUSED(context);
// BadKbApp* bad_kb = context;
}