Rename _registry to _protocols

This commit is contained in:
Willy-JL
2023-10-19 03:45:10 +01:00
parent cb2c00a84f
commit b35221f0a3
7 changed files with 6 additions and 6 deletions

View File

@@ -3,7 +3,7 @@
#include <furi_hal_bt.h>
#include <gui/elements.h>
#include "protocols/_registry.h"
#include "protocols/_protocols.h"
// Hacked together by @Willy-JL
// Custom adv API by @Willy-JL (idea by @xMasterX)

View File

@@ -1,4 +1,4 @@
#include "_registry.h"
#include "_protocols.h"
const Protocol* protocols[] = {
&protocol_continuity,

View File

@@ -1,5 +1,5 @@
#include "continuity.h"
#include "_registry.h"
#include "_protocols.h"
// Hacked together by @Willy-JL
// iOS 17 Crash by @ECTO-1A

View File

@@ -1,5 +1,5 @@
#include "fastpair.h"
#include "_registry.h"
#include "_protocols.h"
// Hacked together by @Willy-JL and @Spooks4576
// Documentation at https://developers.google.com/nearby/fast-pair/specifications/introduction

View File

@@ -1,5 +1,5 @@
#include "swiftpair.h"
#include "_registry.h"
#include "_protocols.h"
// Hacked together by @Willy-JL and @Spooks4576
// Documentation at https://learn.microsoft.com/en-us/windows-hardware/design/component-guidelines/bluetooth-swift-pair

View File

@@ -1,6 +1,6 @@
#include "../ble_spam.h"
#include "protocols/_registry.h"
#include "protocols/_protocols.h"
static void random_mac_changed(VariableItem* item) {
Ctx* ctx = variable_item_get_context(item);