Welcome Guest,Register Now
Log In

ANT Forum

Welcome guest, please Login or Register

   

Method to get messages?

Rank

Total Posts: 1

Joined 2024-04-29

PM

Hi Everyone,

ANT, and embedded programming outside of arduino are new to me.

I've looked at the examples in the NRF SDK, but I can't seem to find a 'getMessage' method?

Closest I've seen is inside [project opened in SES]/nRF_SoftDevice/nrf_sdh_ant.c:

ant_evt_t  ant_evt;

        
ret_code sd_ant_event_get(&ant;_evt.channel, &ant;_evt.eventant_evt.message.aucMessage);
        if (
ret_code != NRF_SUCCESS)
        
{
            
break;
        
}

        NRF_LOG_DEBUG
("ANT Event 0xX Channel 0xX"ant_evt.eventant_evt.channel); 


Trying to then log that using
NRF_LOG_INFO(ant_evt.message.aucMessage


Results in nothing on my serial console. What am I missing?

Messages are sent from another ANT device using the broadcast_tx example.