This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

CC2451 as proximity with nrf52832

Hi, Can I use TI (cheap module 2451) as experimental blinky with central NRF52832.Don't need send button command , only UUID (TI:FFE0) check.It is possible?

Thanks

Parents
  • I haven't used that central, but I have used the hrs central. First, try viewing advertisements here:

    static void on_ble_evt(ble_evt_t* p_ble_evt)
    {
        ASSERT(p_ble_evt);
        uint32_t err_code;
    
        const ble_gap_evt_t* const p_gap_evt = &p_ble_evt->evt.gap_evt;
        ASSERT(p_gap_evt);
    
        switch (p_ble_evt->header.evt_id)
        {
            case BLE_GAP_EVT_ADV_REPORT:
            {
                // data to view: p_gap_evt->params.adv_report
                break;
            }
    
Reply
  • I haven't used that central, but I have used the hrs central. First, try viewing advertisements here:

    static void on_ble_evt(ble_evt_t* p_ble_evt)
    {
        ASSERT(p_ble_evt);
        uint32_t err_code;
    
        const ble_gap_evt_t* const p_gap_evt = &p_ble_evt->evt.gap_evt;
        ASSERT(p_gap_evt);
    
        switch (p_ble_evt->header.evt_id)
        {
            case BLE_GAP_EVT_ADV_REPORT:
            {
                // data to view: p_gap_evt->params.adv_report
                break;
            }
    
Children
No Data
Related