BLE從機(16)廣播與連線回撥

SweetTea_lllpc發表於2024-11-06

功能:在連線間隔和廣播間隔到來時,會進入該回撥,可以在回撥函式加上其他執行邏輯程式碼。

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);
}

相關文章