cancel
Showing results for 
Search instead for 
Did you mean: 

Sigfox_CLI_Demo_Project command values for start_continuous_transmission

CChon.0
Associate II

I am trying to trigger the start_continuous_transmission for the sigfox CLI demo but it returns an error 0x0058 when I debug. What are the values to trigger it ? I tried editing the code to fit in the frequency manually but it still returns an error.

void SIGFOX_API_start_continuous_transmission_Action(void)
{
  sfx_u32 frequency=(uint32_t)920800000; //(uint32_t)unsignedCommandArgument(0);
  sfx_modulation_type_t mode=(sfx_modulation_type_t)0; 
 //unsignedCommandArgument(1); 
//0 for unmodulated 
  sfx_error_t err;
  
  err=SIGFOX_API_start_continuous_transmission(frequency, mode);
  
  responsePrintf("{&N API call...&tx}\r\n",
		 "SIGFOX_API_start_continuous_transmission", "sfx_error", err);
}

I couldn't find the parameters in the documentation or code. Please help.

Thank you

Best regards,

Chong

2 REPLIES 2
Thomas LB
Associate III

Hi,

I know it's late but I've searched for it for 5min so maybe it will be helpful for someone:

just type:

start_continuous_transmission 868000000 0

read UM2169 for details (https://www.st.com/content/ccc/resource/technical/document/user_manual/group0/8d/9a/ea/d7/62/06/43/ce/DM00361540/files/DM00361540.pdf/jcr:content/translations/en.DM00361540.pdf)

This morning a reproduced the sfx_error:58

If you do

"node_open" before "start_continuous_transmission 868000000 0" you got error 58

just don't do "node_open" and your good