I have a simple configuration of two XBees: one coordinator and one end device/router. The coordinator continuously sends data to the end device at 9600 bps without expecting any sort of response from it (I cannot increase the bps because of standardisation issues in my application). I managed to make it send data, but it arrives after a random amount of seconds at the end device, which I do not want - it must ideally be instantaneous. Which XBee parameters do I need to modify in order to make the transmission much faster?
How can I increase the transmission speed between XBees
374 Views Asked by Theodor At
2
There are 2 best solutions below
Related Questions in IOT
- thingsboard: reformat shared attribute JSON before publishing via MQTT
- Not able to recieve message sent from mobile to GSM SIM900 but other functionalities working
- Python: Cannot Run Linux Terminal Commands With Scripts
- How to run Zephyr Echo Client-Server sample using nrf52840dk & nrf52840dongle?
- Communication between the Neo6m GPS and the Esp32
- Turn phone with an IR blaster into wifi enabled IR hub
- Unable to start the Coap server in a Spring boot application
- How to create a photo gallery widget/database?
- AWS IoT Self-managed certificate signing with CreateCertificateFromCsr API
- Azure IOT central command/NodeRed
- PyFirmata servo control issue (Arduino with Python)
- How to connect bluetooth devices using flutter blue plus?
- Does CdiCenteroutput support in lipari-mid & kiska - mid (55ppm)
- "Blynk Connection Issue with Arduino and ESP8266 in IoT Project"
- How to control Tuya API device with an HTML request
Related Questions in MICROCONTROLLER
- ESP32 Consequtive Interrupt WDT Timeout Exception
- STM32G030 refuses write to flash
- can't configurate VL53l0x api
- STM32L011K4Tx Compare toggle not working as expected
- How to get PC of first instruction of inline asm block (C)?
- ESP-32 (FreeRTOS): The serial monitor prints unknown symbols (???) instead of a string
- SWO on a Blackpill board
- I2C LCD1602 interfacing with PIC16F877A
- J-Link script to flash program in S32K144 (allow security)
- Design of a function that modifies from 1-4 values of a register
- Is it possible to change values of the zephyr-rtos configuration file prj.conf using CMake arguments?
- Memory Aliasing to a specific Flash Sector
- How to make a proper delay in a microcontroller?
- USART to serial monitor/pc STM32
- How to use a c++ class as wrapper for timer-interrupts on RP2040 (RPPico)
Related Questions in XBEE
- API ID 0X17. Send an AT Command message from Xbee connected to arduino to a slave Xbee
- Gps module has to use the UART pins
- XBEE 3 Zigbee 3.0 sometimes sends wrong message content
- When reading data from UART, fetching data is not correct
- micropython uart.read() in SAMD51 is incomplete (only 2 bytes returned)
- How can I change my xbee setup for AP = 0 from API mode (AP = 1 or AP =2) by using digi module in python (AT mode or transparent mode)?
- XBee is suddenly not receiving anything after I updated Destination mac address
- XBee-Pro 900HP Communication in API Mode
- XBee 2 Module sensor network and Python with Raspberry Pi - ONLY one Mac address from two different received samples
- How can I increase the transmission speed between XBees
- Digi-Xbee Packet Backlog when receiving on windows
- What did I do wrong when building receiver with pyserial?
- I tried to receive the BLE characteristics value with NOTIFY property in XBee micropython, But iam receiving only empty bytes
- Unable to connect to xbee device in xctu
- Using attributes from a raised Exception in another file
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
If you're using the XBee module in transparent mode (ATAP=0), then you want to look at ATRO, the packetization timeout value. This is the amount of idle time on the serial interface that the XBee waits for before considering a packet complete and ready to send.
If this is a sleeping end device, you may experience delays if it's sleeping and the coordinator is waiting for it to wake up before sending. Try configuring it as a router and see if that helps with the delay.
Note that the serial port speed (ATBD) of the coordinator and end device do not need to match. The XBee module buffers packets and always sends them over the air at 250kbps. When possible, you should run the serial interface at at least 115,200bps to minimize the latency and maximize the throughput of the wireless interface.
Finally, how are you handling addressing of your packets? Using 64-bit or 16-bit addresses? If 16-bit addresses, there could be discovery overhead, but that should go away after the first packet gets through.
And if you're not using modules with chip antennas, do you have antennas attached?