Update version number and logcat strings to help with debugging
This commit is contained in:
@@ -1,5 +1,6 @@
|
|||||||
OpenSeizureDetector Android App - Change Log
|
OpenSeizureDetector Android App - Change Log
|
||||||
============================================
|
============================================
|
||||||
|
V4.2.8 - Fixed BLE2 data source to work with BangleJS2 watches
|
||||||
V4.2.7 - BLE2 data source re-start fixed??
|
V4.2.7 - BLE2 data source re-start fixed??
|
||||||
V4.2.6 - Fixed problem with notifications in Android 13
|
V4.2.6 - Fixed problem with notifications in Android 13
|
||||||
- Improved start-up checks for permissions
|
- Improved start-up checks for permissions
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
xmlns:tools="http://schemas.android.com/tools"
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
android:versionCode="140"
|
android:versionCode="141"
|
||||||
android:versionName="4.2.7">
|
android:versionName="4.2.8">
|
||||||
<!-- android:allowBackup="false" -->
|
<!-- android:allowBackup="false" -->
|
||||||
<uses-permission android:name="android.permission.POST_NOTIFICATIONS"/>
|
<uses-permission android:name="android.permission.POST_NOTIFICATIONS"/>
|
||||||
|
|
||||||
|
|||||||
@@ -265,14 +265,14 @@ public class SdDataSourceBLE2 extends SdDataSource {
|
|||||||
mHrChar = gattCharacteristic;
|
mHrChar = gattCharacteristic;
|
||||||
peripheral.setNotify(service.getUuid(), gattCharacteristic.getUuid(), true);
|
peripheral.setNotify(service.getUuid(), gattCharacteristic.getUuid(), true);
|
||||||
} else if (charUuidStr.equals(CHAR_OSD_ACC_DATA)) {
|
} else if (charUuidStr.equals(CHAR_OSD_ACC_DATA)) {
|
||||||
Log.i(TAG, "Subscribing to Acceleration Data Change Notifications");
|
Log.i(TAG, "Subscribing to OSD Acceleration Data Change Notifications");
|
||||||
peripheral.setNotify(service.getUuid(), gattCharacteristic.getUuid(), true);
|
peripheral.setNotify(service.getUuid(), gattCharacteristic.getUuid(), true);
|
||||||
mOsdChar = gattCharacteristic;
|
mOsdChar = gattCharacteristic;
|
||||||
} else if (charUuidStr.equals(CHAR_OSD_STATUS)) {
|
} else if (charUuidStr.equals(CHAR_OSD_STATUS)) {
|
||||||
Log.i(TAG, "Found OSD Status Characteristic");
|
Log.i(TAG, "Found OSD Status Characteristic");
|
||||||
mStatusChar = gattCharacteristic;
|
mStatusChar = gattCharacteristic;
|
||||||
} else if (charUuidStr.equals(CHAR_OSD_BATT_DATA)) {
|
} else if (charUuidStr.equals(CHAR_OSD_BATT_DATA)) {
|
||||||
Log.i(TAG, "Subscribing to battery change Notifications");
|
Log.i(TAG, "Subscribing to OSD battery change Notifications");
|
||||||
peripheral.readCharacteristic(service.getUuid(), gattCharacteristic.getUuid());
|
peripheral.readCharacteristic(service.getUuid(), gattCharacteristic.getUuid());
|
||||||
peripheral.setNotify(service.getUuid(), gattCharacteristic.getUuid(), true);
|
peripheral.setNotify(service.getUuid(), gattCharacteristic.getUuid(), true);
|
||||||
mBattChar = gattCharacteristic;
|
mBattChar = gattCharacteristic;
|
||||||
@@ -360,6 +360,8 @@ public class SdDataSourceBLE2 extends SdDataSource {
|
|||||||
BluetoothBytesParser parser = new BluetoothBytesParser(value);
|
BluetoothBytesParser parser = new BluetoothBytesParser(value);
|
||||||
String charUuidStr = characteristicUUID.toString();
|
String charUuidStr = characteristicUUID.toString();
|
||||||
|
|
||||||
|
Log.v(TAG,"onCharacteristicUpdate() - Characteristic "+charUuidStr+" updated");
|
||||||
|
|
||||||
if (charUuidStr.equals(CHAR_HEART_RATE_MEASUREMENT)) {
|
if (charUuidStr.equals(CHAR_HEART_RATE_MEASUREMENT)) {
|
||||||
Log.v(TAG, String.format("%s", "HR Measurement"));
|
Log.v(TAG, String.format("%s", "HR Measurement"));
|
||||||
// Parse the flags
|
// Parse the flags
|
||||||
|
|||||||
@@ -3,6 +3,7 @@
|
|||||||
<string name="app_name">OpenSeizureDetector</string>
|
<string name="app_name">OpenSeizureDetector</string>
|
||||||
<string name="changelog">
|
<string name="changelog">
|
||||||
"\n
|
"\n
|
||||||
|
\nV4.2.8 - Fixed problem with BangleJS2 not working with new BLE2 data source
|
||||||
\nV4.2.7 - Finally fixed BLE2 data source re-start after dropping connection?
|
\nV4.2.7 - Finally fixed BLE2 data source re-start after dropping connection?
|
||||||
\nV4.2.6 - Fixed issues with Android 13 notifications and BLE data source shutdown. Added support for V2.x of Garmin watch app, Added new BLE2 data source, signal strength and battery level graphs.
|
\nV4.2.6 - Fixed issues with Android 13 notifications and BLE data source shutdown. Added support for V2.x of Garmin watch app, Added new BLE2 data source, signal strength and battery level graphs.
|
||||||
\nV4.2.4 - Fault alarm rather than crash if bluetooth system crashes.
|
\nV4.2.4 - Fault alarm rather than crash if bluetooth system crashes.
|
||||||
|
|||||||
Reference in New Issue
Block a user