-
Notifications
You must be signed in to change notification settings - Fork 517
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
data drop sending long strings #182
Comments
Thanks for filing the issue with a specific test case. I couldn't investigate now, since I am too busy with nrf52840. It may take a bit of time, please patient !!! |
I found these same problems, and submitted a pull request (#147) some time ago which fixes them. If you want, feel free to try them out. For convenience sake, I have created a new branch (https://github.com/mkirkhart/Adafruit_nRF52_Arduino/tree/mk_BLE_UART_updates_with_upstream_updates) which has these fixes merged with the current state of the master branch. I ran a quick test of this with my end project, and it works correctly. To send data longer than 20 bytes, you will need to enable transmit buffering using the BLEUart::bufferTXD() function. The prototype for this function is as follows:
where enable = 1 to enable buffering, or enable = 0 to disable buffering (if already enabled). If not specified, fifo_depth defaults to BLE_UART_DEFAULT_FIFO_DEPTH, or 256 bytes. In my end project, I use a fifo_depth of 2014. Any reason you have not responded on my pull request (#147)? Even with all the changes since the pull request, it should merge cleanly. If needed, I can submit a new pull request. Michael Kirkhart |
@mkirkhart I am really sorry, I am much appreciated for anyone's PR or constructive comment on any issues in general. Your PR is really relevant and affect many users. So I would like to sit down and test it properly. Unfortunately I am too busy with nrf52840 prep which will be launched soon enough. nrf52840 has exciting USB but It also come with lots of works. I need to get it running with both CircuitPython and Arduino at launch as well To sum up, my hands are tied down to nrf52840, I can only look at simple and easy issue without much testing for now. You can find a long queue of waiting issues and PR as well as forum support |
Thank you very much @mkirkhart |
hi @mkirkhart Do you have some suggestions where the problem is? |
Hi, I am having same issue. As mentioned From where I can modify? for BLE Uart example. My program crashed when I send more than 20 bytes |
probably related to Long Write support, which is implemented in master, would you mind pulling master code and give it a try. |
@hathach thx for your effort! |
@craiq have you tried with the latest master code, if you still have issue with bluefruit app, try to use nrfconnect app from Nordic. Long write is just implemented, it should be fixed now. |
@hathach latest commit on my local copy is 3c27998 |
@hathach tried between two nrf52832 now |
That is at least long write is working, seems like it is buffer related issue. Can you provide detail instructions to reproduce the above missing package: your phone hw, os, app you use to test, sketch that running on the feather board. I will try to troubleshoot that |
Phone:
Arduino IDE 1.8.6 - used integrated serial monitor Sketches: (example sketches)
Thats my setup. Happy trouble shooting :) |
thanks, but I am still not clear how you send 320 chars to feather that causes the issue. Can you elaborate how to reproduce that |
ah ok. as I wrote in the comment this information is from. |
thanks @craiq, that is a different issue, most likely the txbuf packe count is running out since bleuart central doesn't do LONG WRITE sequence. I will investigate this later on. |
Is this still an issue with the latest (as of Dec 2020) released software? I'm trying to get more than 20 bytes sent from my nrf52840 bluefruit sense to the Bluefruit Connect app. I tried setting bufferTXD(true) (which seems to be the latest api) but I still can't get anything above 20 bytes per packet. Is this still in the TODO list, or is there a better recommended way? |
Hi @connelly38, I'm stuck at the same issue. Did you ever figure out how to get around this issue? Maybe, I need to write a new algorithm that chunks the data that I send from the arduino. |
I am also experiencing this, is there any solutions available? |
Hi,
according to several issues adressing data drop, my problem could not be solved by those fixes yet.
Setup:
Win10 x64
Arduino IDE 1.8.6
bleuart sketch in full debug mode
Android Bluefruit LE App
Sending string from Bluefruit LE App via Uart to the Board.
Example String to send:
What I reveived:
I tried the pull request #178 , but it could not solve this problem.
Is there any other boundry, why this might not work?
What I realised is that up to 20 bytes it's safe to send data. Bigger junks are very likely to drop data.
Full Serial Log:
The text was updated successfully, but these errors were encountered: