Incorporating the latest SystemK.
This commit is contained in:
parent
5e18b21943
commit
2bc9796f9e
4 changed files with 18 additions and 2 deletions
|
@ -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
|
|
@ -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
|
Loading…
Add table
Add a link
Reference in a new issue