Viktor Vano
Viktor Vano
First of all, you have to find out what service and characteristic UUID is used to read and write. Then...: In BluetoothLeService.java change your UUID: ` public void writeCharacteristic(String input)...
Well a standard BLE packet size is 20 bytes only. If you want to send more, you need to split the buffer contents into those packets of 20 bytes. That's...
Just another info regarding BLE: In Bluetooth 4.0, BLE was introduced with a maximum payload of 33 bytes (not including Access Address and CRC fields). Each layer in the protocol...
I am having the same issue. I had a few threads running and was able to stop them when closing my application, except the Thread that Jsensors class created. There...
When you unlock your flash, you are able to write data. Just set what data and an address where to write it. status = HAL_FLASH_Program(FLASH_TYPEPROGRAM_WORD, address, dataToFlash); There are steps...