功能:在連線間隔和廣播間隔到來時,會進入該回撥,可以在回撥函式加上其他執行邏輯程式碼。
LL_ConnectEventRegister(connectCB);
LL_AdvertiseEventRegister(adverCB);
static void connectCB(uint32_t timeUs)
{
PRINT("connect timeUs = %d\r\n", timeUs);
}
static void adverCB(uint32_t timeUs)
{
GPIOB_InverseBits(GPIO_Pin_4);
}