Tool/software: TI-RTOS
Hi everyone, I'm working with an examples rx/tx of TIRTOS for the CC1310. In this moment the my code have this configuration (see the photo) and I send max 30 byte. If I send more than 30 byte, the CC1310 RX receive the 30 byte and detaches the most received bytes.
How set the Packet Len? I want to add the byte: for examples 50 bytes
#define RX_TASK_STACK_SIZE 1024 // #define RX_TASK_PRIORITY 2 /* TX Configuration */ #define DATA_ENTRY_HEADER_SIZE 8 // 8 /* Constant header size of a Generic Data Entry */- #define MAX_LENGTH 125 //30 /* Max length byte the radio will accept */ #define NUM_DATA_ENTRIES 2 /* NOTE: Only two data entries supported at the moment */ #define NUM_APPENDED_BYTES 2 /* The Data Entries data field will contain: * 1 Header byte (RF_cmdPropRx.rxConf.bIncludeHdr = 0x1) * Max 30 payload bytes * 1 status byte (RF_cmdPropRx.rxConf.bAppendStatus = 0x1) */