Skip to content
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(Examples, BLE): BLE_fcc now uses PRBS15 continuous instead of AA packteized #822

Merged
merged 1 commit into from
Dec 12, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Examples/MAX32690/Bluetooth/BLE_fcc/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,7 @@ VPATH := $(VPATH)
IPATH += .
IPATH += include
IPATH := $(IPATH)
IPATH += ${LIBS_DIR}/MiscDrivers/Display/fonts/

AUTOSEARCH ?= 1
ifeq ($(AUTOSEARCH), 1)
Expand Down
6 changes: 3 additions & 3 deletions Examples/MAX32690/Bluetooth/BLE_fcc/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ static void processConsoleRX(uint8_t rxByte)

APP_TRACE_INFO1("Transmit RF channel 0, 255 bytes/pkt, 0xAA, %s, forever ..",
getPhyStr(phy));
res = LlEnhancedTxTest(0, 255, LL_TEST_PKT_TYPE_AA, phy, 0);
res = LlEnhancedTxTest(0, 255, LL_TEST_PKT_TYPE_PRBS15, phy, 0);
APP_TRACE_INFO2("res = %u %s", res, res == LL_SUCCESS ? "(SUCCESS)" : "(FAIL)");
cmd = 0;
break;
Expand All @@ -204,7 +204,7 @@ static void processConsoleRX(uint8_t rxByte)

APP_TRACE_INFO1("Transmit RF channel 19, 255 bytes/pkt, 0xAA, %s, forever ..",
getPhyStr(phy));
res = LlEnhancedTxTest(19, 255, LL_TEST_PKT_TYPE_AA, phy, 0);
res = LlEnhancedTxTest(19, 255, LL_TEST_PKT_TYPE_PRBS15, phy, 0);
APP_TRACE_INFO2("res = %u %s", res, res == LL_SUCCESS ? "(SUCCESS)" : "(FAIL)");
cmd = 0;
break;
Expand All @@ -213,7 +213,7 @@ static void processConsoleRX(uint8_t rxByte)

APP_TRACE_INFO1("Transmit RF channel 39, 255 bytes/pkt, 0xAA, %s, forever ..",
getPhyStr(phy));
res = LlEnhancedTxTest(39, 255, LL_TEST_PKT_TYPE_AA, phy, 0);
res = LlEnhancedTxTest(39, 255, LL_TEST_PKT_TYPE_PRBS15, phy, 0);
APP_TRACE_INFO2("res = %u %s", res, res == LL_SUCCESS ? "(SUCCESS)" : "(FAIL)");
cmd = 0;
break;
Expand Down
Loading