Incorporating the latest SystemK.

This commit is contained in:
Joe Kearney 2025-06-08 17:18:28 -05:00
parent 5e18b21943
commit 2bc9796f9e
4 changed files with 18 additions and 2 deletions

View file

@ -332,6 +332,14 @@ SystemKResult_T BLE_ScanAndAdvertise(void)
return SYSTEMK_RESULT_SUCCESS;
}
SystemKResult_T BLE_StopAdvertising(void)
{
COMM_BLE_Command_T command = { .ID = COMM_BLE_STOP_ADVERTISING, .Data = (void *)0x00 };
xQueueSend(COMM_BLE_CommandQueue, &command, 0);
return SYSTEMK_RESULT_SUCCESS;
}
void COMM_BLE_RequestState(COMM_BLE_StateID_T state)
{
Next_State = state;

@ -1 +1 @@
Subproject commit c11206e6255fef994c826fb446a234132571af4f
Subproject commit bfcdf4c354ae6c96165e11e2fd6d52d0c8ab91eb