diff options
author | Sven Gothel <[email protected]> | 2021-11-09 10:07:23 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2021-11-09 10:07:23 +0100 |
commit | aa76f1b1faa943f3f81b799da47ca38caedfc377 (patch) | |
tree | f98090b663b5e81fc66a2cd751aa69d562933938 /java/jni | |
parent | 9e003c83c282e7749b4fcafdca678dc755a307db (diff) |
Slave Peripheral / Gatt Server: Map DBGattServer.hpp types DBGatt[Server|Service|Char|Desc] to Java ; BTAdapter.startAdvertising(..) Adds DBGattServer arg
- Implementation is not yet functional, i.e. types are not yet mapped to native instance.
- DBGattChar and DBGattDesc value currently just a 'byte[]' and lacks capacity:
- Its capacity defines the maximum writable variable length
- and its size defines the maximum writable fixed length.
Diffstat (limited to 'java/jni')
-rw-r--r-- | java/jni/direct_bt/DBTAdapter.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/java/jni/direct_bt/DBTAdapter.cxx b/java/jni/direct_bt/DBTAdapter.cxx index 9af80f24..d1a4e039 100644 --- a/java/jni/direct_bt/DBTAdapter.cxx +++ b/java/jni/direct_bt/DBTAdapter.cxx @@ -1060,8 +1060,10 @@ void Java_jau_direct_1bt_DBTAdapter_printDeviceListsImpl(JNIEnv *env, jobject ob } jbyte Java_jau_direct_1bt_DBTAdapter_startAdvertisingImpl(JNIEnv *env, jobject obj, + jobject jgattServerData, jshort adv_interval_min, jshort adv_interval_max, jbyte jadv_type, jbyte adv_chan_map, jbyte filter_policy) { + (void)jgattServerData; // FIXME try { BTAdapter *adapter = jau::getJavaUplinkObject<BTAdapter>(env, obj); jau::JavaGlobalObj::check(adapter->getJavaObject(), E_FILE_LINE); |