03-20-2020 05:38 AM
Hi,
I am using the BLE toolkit to read one characteristic. Unfortunetly this charateristic has 16Bit. As in the toolkit only 8 bit can be read, I spitted my data to send it in two different 8 bit characteristics. This makes it much too slow. At the moment I am polling the characteristic values in a loop.
Is there any way to make the readout quicker? Is there a way to receive notifications?
I set the baudrate of the com port to 112500.
I would be very happy about any suggestions.
Thanks a lot.
03-20-2020 05:48 AM - edited 03-20-2020 05:49 AM
Hi Vlw,
@VIvv wrote:
I am using the BLE toolkit to read one characteristic. Unfortunetly this charateristic has 16Bit. As in the toolkit only 8 bit can be read, I spitted my data to send it in two different 8 bit characteristics.
Why do you think you can only read one byte per read access?
There is an example in the toolkit showing how to read the whole device name with just one read call…
03-20-2020 05:52 AM - edited 03-20-2020 05:54 AM
True, I thought about that as well. But I read a lot of foren post which said that ony 8 Bit was possible. Also from experience my data was cut after 8 bit.
Are you familier with that toolkit? Do you know what to change to receive the total data value of 16 bit?