Part Number: CC1310
Tool/software: Code Composer Studio
Hello,
I need to transfer Data packet from Sensor to Collector and also from Collector to Sensor. The packet size is 150 bytes on both ways. I made following changes on sensor and collector example form ti 15.4 stack according to my project
In sensor example, I made the following Changes
- In sensor example, I removed all the sensing function also the UART Print function
- I Created one more task to transmit and receive the data over UART
- The Uart Task Semaphore is always pend and it only wakes up when there is command received from RF or there is interrupt fromGPIO pin
- date rate is 50 kbps.
- Changed CONFIG_FH_ENABLE to true
- We are using all available the channels for frequency hopping
- Changed CONFIG_POLLING_INTERVAL to 400
The complete operation of the sensor example is transmitting and receiving the data packet over UART when there is GPIO interrupt or date packet receive over RF
In Collector example I made the following changes
- In Collector example I removed all UART Print function
- I Created one more task to transmit and receive the data over UART
- Changed CONFIG_FH_ENABLE to true
The complete operation of the Collector example is Collect the data packets over RF from all the sensor nodes and send to Ethernet controller over UART and Collect the data packets from Ethernet controller over UART and send it to respective sensor node over RF
There are more than 30 sensor nodes are presents in my network which communicates with Collector
I am having the following issues in my project
- The sensor example is consuming around 1.5 mA. current How can I reduce my current consumption
- What is the ideal current consumption of Sensor example
- How much The Frequency hopping affects the current consumption
- What is the effect of packet size of on current consumption