Status Update
Comments
na...@gmail.com <na...@gmail.com> #2
I am not sure I understand the use case. how can the benchmark be code to real world scenario when it's not possible to do right now ? which scenario is it ?
In any case, since this would be for benchmarking, this would clearly not be available through the public DSL. We should find a semi-private way of doing this (maybe the private variant API object could offer that functionality for instance or a property).
na...@gmail.com <na...@gmail.com> #3
We want benchmarks to measure code after Progaurd / R8, but it's not possible to turn that on for androidTests in library modules at the moment (to my knowledge?)
Benchmarks are also a public facing thing, but we have a plugin to help configure gradle builds for our users, so if support for this ends up in a private API, we could try to keep those usages localized to our code perhaps.
rp...@google.com <rp...@google.com> #4
Any update on the status of this request and when it can be supported?
Thanks,
Amanda
na...@gmail.com <na...@gmail.com> #5
this is not part of our OKR at this point so we are not talking soon. at first glance, we would need to simulate usage patterns to minify against and such, this seems substantial amount of work. there are not a lot of library module that have android tests, most only rely on unit-tests.
how important is this ? we are out of PM right now but I suspect the next step will be to negotiate with J. Eason and xav@ to scale a priority level.
na...@gmail.com <na...@gmail.com> #6
This is a high priority request for Compose, to enable their benchmarks to measure release accurate performance. (Micro) Benchmarks are library modules, as they don't need the complexity of multi-apk tests - they're self measuring APKs that depend on libraries. (d.android.com/benchmark)
there are not a lot of library module that have android tests, most only rely on unit-tests.
To clarify, this is for com.android.library
modules, not jars - I'd expect most of those to use android tests (all of the libraries in jetpack for example do).
we would need to simulate usage patterns to minify against and such, this seems substantial amount of work
Simulate usage patterns? I don't understand - the dev can themselves provide a keep rule for test infra / classes if necessary. Long term, keep rules should be provided by test libraries.
rp...@google.com <rp...@google.com>
na...@gmail.com <na...@gmail.com> #7
We've been experimenting with ways to work around this for Compose. Performance results from R8 seem significantly different, and would enable us to measure much more accurately. I've tried to come up with a workaround using a com.android.app module, and while it almost works (and we can get measurements), it's extremely hacky and doesn't let us run tests anymore via Studio:
na...@gmail.com <na...@gmail.com> #8
Bumping this request, as Compose has recently had more interest in the ability to benchmark with and without R8 enabled.
We're fine if the default implementation doesn't work with minification (tree shaking) - we're happy to supply those rules ourselves, or simply evaluating with minification off to take advantage of other optimizations.
zi...@google.com <zi...@google.com> #9
Juan, this might be something to put on our OKR in the near future, I think you chat with Amanda to set the priority.
na...@gmail.com <na...@gmail.com> #10
Hey everyone, I am catching up on feature requests and saw this one. I'll schedule time for us to talk about this in a few days.
zi...@google.com <zi...@google.com> #11
Ivan, can you provide a rough estimate on how long this would take ?
na...@gmail.com <na...@gmail.com> #12
I think this is a duplicate of
My understanding of this feature request is the following:
- As a library author, I'd like to write microbenchmarks in my library subproject that measure performance of my library after it's been processed by R8 [1]
Chris/Dustin, is this correct? If [1] is correct, this is a duplicate of a duplicate of
zi...@google.com <zi...@google.com> #13
As a small correction, it's:
- As a user of microbenchmarks, I'd like to measure performance of code processed by R8
For a bit more context, we generally recommend library and app devs create a completely new, empty library module to add microbenchmarks to, e.g. mylib/src/androidTest/
.
For this reason, we don't particularly care about the minified main library component from the same module.
This librarytest-only focus does have the downside that app devs must pull code into a library to be microbenchmarks, and maybe that could be something improved if there was a good minification story across the test and app module boundary, but that's a separate (but related) concern for the future.
For right now, we care about libraries with empty main directories running R8 on the code in androidTest and its dependencies.
na...@gmail.com <na...@gmail.com> #14
Thanks for clarifying this. In terms of benchmarking R8-processed library there seem to be two options:
- minify both library and its usages together (in this case they are coming from microbenchmark tests), and collect performance data
- run R8 on the library only, and use non-minified (i.e. public library APIs) from microbenchmark tests to collect performance data; this is captured in
.http://b/263197720
IMO both 1) and 2) are valid use-cases. For 1) you'd like to see how your library behaves given concrete API usages, while 2) tests library "full-surface".
Could 1) also be modelled with an application that depends on the library, uses some APIs, and then microbenchmark tests from its androidTest are doing the profiling?
na...@gmail.com <na...@gmail.com> #15
For 1) you'd like to see how your library behaves given concrete API usages,
Yes, this is it exactly. We want 1, assuming that it means all of the library dependencies of the benchmark and it's androidTest code would be run through R8 together.
As there's no content in my-benchmark/src/
, I don't think 2 helps our issue.
Could 1) also be modelled with an application that depends on the library, uses some APIs, and then microbenchmark tests from its androidTest are doing the profiling?
We experimented with this years ago when we started the project, it could work conceptually, but the issue is that the androidTest dir build wasn't factored into the tree shaking step, so every test had to be accompanied by manual keep rules/annotations to the code it invodes. I'd be fine having to specify keep rules for JUnit and @Test methods, but if we wanted libraries to be minified, they had to be in the app, and the benchmark had to cross that test/apk boundary constantly.
Another option we explored was declaring each test twice (as a @Keep
function in src/
and wrapper in androidTest/
so Studio could see/run the test method). which technically worked, but was similarly cumbersome.
zi...@google.com <zi...@google.com> #16
I think I have all requirements right now.
- library androidTest: there is a single APK AGP produces, and this would allow you to run R8 on both androidTest code and its runtime classpath (which includes all of its dependencies&main). Every class from your tests would be an entry point. Also, when
main
component of the library is processed with R8, we'd apply its mapping file. - application androidTest: we produce 2 APKs, so R8 runs on androidTest code and its runtime classpath (includes only its dependencies, and all duplicate libraries from main are removed). Every class from your tests would be an entry point. Also, when
main
component of the application is processed with R8, we'd apply its mapping file.
Is this a correct summary? If so, we can de-duplicate?
P.S. Related to issues with taking test usages into account when running R8 on application code, this is
na...@gmail.com <na...@gmail.com> #17
Yes, thanks, duping against
na...@gmail.com <na...@gmail.com> #18
IIUC, for library androidTest, we are going to run R8 for its program code(e.g. my-benchmark/src/
suppose it is not empty) together with androidTest code and other dependencies, right?
If so, I think
enable it on the test apk for libraries. I do not want progaurd to run on the library itself, however.
which seems to suggest the program code should not be minified.
zi...@google.com <zi...@google.com> #19
I do not want progaurd to run on the library itself, however.
My reading of this statement on that bug is that they don't want the library's .aar or .jar to be minified (as part of the actual library build), but they DO want the library minified as part of the library test build, which is why I agreed with the duping suggestion.
From a later comment, comment13:
The original comment is pretty clear that it's for libraries which do not want to run R8 on their main code but want to on their test APK to validate things like the embedded rules.
Testing embedded rules implies that the .aar/.jar from the library won't be minifed, but they want to test an environment where the library is minified when embedded in an apk, via the tests.
na...@gmail.com <na...@gmail.com> #20
Thanks for the insights, Chris. Can you also clarify what are the embedded rules? keep rules shipped with the library?
zi...@google.com <zi...@google.com> #21
Yes, rules shipped with the library.
na...@gmail.com <na...@gmail.com> #22
When it comes to introducing the new dsl, we are considering making it more specific, rather than using "minify". So I would love to confirm with you what you want r8 to do. e.g. codeShrinking, obfuscation?
na...@gmail.com <na...@gmail.com> #23
We want all of the r8 functionality, since we want to be able to mirror the behavior in apps (either for correctness testing or for performance testing).
My suggestion would be for library test configuration to match app DSL, for consistently and simplicity. As things change in the app r8 dsl, we could have the library r8 dsl mirror it (e.g.
na...@gmail.com <na...@gmail.com> #24
However we now see more disconnects and when ranging we seem to get a lot of other status messages with some ranging results.
So general ranging stability seems to be worse.
This is for a Pixel Fold and only attempting a unicast ranging session to a single beacon with rate set to automatic:
val rangingParameters = RangingParameters(
uwbConfigType = CONFIG_UNICAST_DS_TWR,
// SessionKeyInfo is used to encrypt the ranging session.
sessionId = session,
sessionKeyInfo = sessionKey,
complexChannel = uwbChannel,
peerDevices = listOf(device),
updateRateType = RangingParameters.RANGING_UPDATE_RATE_AUTOMATIC,
subSessionId = 0,
subSessionKeyInfo = null
)
So we see RangingStatus set to 33, 34, 36, 37, 38 and some successful 0 results.
What do all these status results actually mean?
Here is the full UWB logcat and I attached a bugreport
---------------------------- PROCESS STARTED (7115) for package
2023-08-09 10:20:03.436 1281-3356 AppsFilter system_server I interaction: PackageSetting{3deba06
2023-08-09 10:20:03.447 1281-3356 AppsFilter system_server I interaction: PackageSetting{3deba06
2023-08-09 10:20:06.427 7115-7115 LoggingKt
2023-08-09 10:20:06.428 7115-7115 LoggingKt
2023-08-09 10:20:06.520 1281-4606 ActivityManager system_server W Unable to start service Intent { act=androidx.core.uwb.backend.service pkg=androidx.core.uwb.backend } U=0: not found
2023-08-09 10:20:06.521 7115-7115 LoggingKt
2023-08-09 10:20:07.249 7115-7115 LoggingKt
2023-08-09 10:20:07.267 7115-7115 LoggingKt
2023-08-09 10:20:07.267 7115-7115 LoggingKt
2023-08-09 10:20:07.267 7115-7269 LoggingKt
2023-08-09 10:20:08.317 7115-7156 LoggingKt
2023-08-09 10:20:08.338 7115-7156 LoggingKt
2023-08-09 10:20:08.733 7115-7325 LoggingKt
2023-08-09 10:20:08.739 7115-7325 LoggingKt
2023-08-09 10:20:09.788 7115-7329 LoggingKt
2023-08-09 10:20:09.794 7115-7329 LoggingKt
2023-08-09 10:20:11.488 7115-7157 LoggingKt
2023-08-09 10:20:11.489 7115-7157 LoggingKt
2023-08-09 10:20:11.603 7115-7315 LoggingKt
2023-08-09 10:20:11.607 7115-7329 UwbMangerImpl
2023-08-09 10:20:11.642 2472-3336 NearbyUWB com.google.android.gms.persistent I (REDACTED) onGetService: Create client bridge with key %s
2023-08-09 10:20:11.642 2472-3336 NearbyUWB com.google.android.gms.persistent I (REDACTED) Analytics is enabled for package %s
2023-08-09 10:20:11.650 2472-3336 NearbyUWB com.google.android.gms.persistent I (REDACTED) Client %s with package name %s, 0p Identifier %s, and sdk version %s has connected.
2023-08-09 10:20:11.668 1281-3725 UwbConfManager system_server D getCapsInfo for protocol: generic
2023-08-09 10:20:11.668 1281-3725 uwb system_server D uwb_uci_jni_rust::uci_jni_android_new: Java_com_android_server_uwb_jni_NativeUwbManager_nativeGetCapsInfo: enter
2023-08-09 10:20:11.668 1281-2605 uwb system_server D uwb_core::uci::uci_manager: Received cmd: SendUciCommand { cmd: CoreGetCapsInfo }
2023-08-09 10:20:11.669 836-836 qorvo.uwb....ckend_fira android.hardware.qorvo.uwb.service I uci_backend_fira_core_get_caps_info: MT/GID/OID 4003 CMD
2023-08-09 10:20:11.669 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:11.669 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I ack_handler
2023-08-09 10:20:11.670 1281-3725 UwbConfManager system_server I getCapsInfo respData: UwbTlvData { status = 0 length = 32, tlvs = [0004010101010104010101010201030301060401090501030601020701020801010901010A01010B01090C010A0D01010E01080F05000000000010010F110100A0017FA10400000F00A201F8A30103A4020100A5020001A603101112A70402000000E30101C00101E50407000000E60101E70101E4010E] }
2023-08-09 10:20:11.673 1281-3725 CccDecoder system_server W SUPPORTED_MIN_UWB_INITIATION_TIME_MS not found
2023-08-09 10:20:11.687 7115-7310 LoggingKt
2023-08-09 10:20:11.824 7115-7327 LoggingKt
2023-08-09 10:20:11.826 7115-7157 LoggingKt
2023-08-09 10:20:12.135 7115-7323 LoggingKt
2023-08-09 10:20:12.136 7115-7323 LoggingKt
2023-08-09 10:20:12.278 7115-7328 LoggingKt
2023-08-09 10:20:12.281 7115-7157 UwbMangerImpl
2023-08-09 10:20:12.291 2472-3922 NearbyUWB com.google.android.gms.persistent I (REDACTED) onGetService: Create client bridge with key %s
2023-08-09 10:20:12.292 2472-3922 NearbyUWB com.google.android.gms.persistent I (REDACTED) Analytics is enabled for package %s
2023-08-09 10:20:12.313 2472-3922 NearbyUWB com.google.android.gms.persistent I (REDACTED) Client %s with package name %s, 0p Identifier %s, and sdk version %s has connected.
2023-08-09 10:20:12.328 1281-3725 UwbConfManager system_server D getCapsInfo for protocol: generic
2023-08-09 10:20:12.328 1281-3725 uwb system_server D uwb_uci_jni_rust::uci_jni_android_new: Java_com_android_server_uwb_jni_NativeUwbManager_nativeGetCapsInfo: enter
2023-08-09 10:20:12.329 1281-2607 uwb system_server D uwb_core::uci::uci_manager: Received cmd: SendUciCommand { cmd: CoreGetCapsInfo }
2023-08-09 10:20:12.330 836-836 qorvo.uwb....ckend_fira android.hardware.qorvo.uwb.service I uci_backend_fira_core_get_caps_info: MT/GID/OID 4003 CMD
2023-08-09 10:20:12.355 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:12.355 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I ack_handler
2023-08-09 10:20:12.357 1281-3725 UwbConfManager system_server I getCapsInfo respData: UwbTlvData { status = 0 length = 32, tlvs = [0004010101010104010101010201030301060401090501030601020701020801010901010A01010B01090C010A0D01010E01080F05000000000010010F110100A0017FA10400000F00A201F8A30103A4020100A5020001A603101112A70402000000E30101C00101E50407000000E60101E70101E4010E] }
2023-08-09 10:20:12.358 1281-3725 CccDecoder system_server W SUPPORTED_MIN_UWB_INITIATION_TIME_MS not found
2023-08-09 10:20:12.364 7115-7327 LoggingKt
2023-08-09 10:20:12.459 7115-7323 LoggingKt
2023-08-09 10:20:12.830 7115-7315 LoggingKt
2023-08-09 10:20:13.081 7115-7157 LoggingKt
2023-08-09 10:20:13.082 7115-7157 LoggingKt
2023-08-09 10:20:13.218 7115-7157 LoggingKt
2023-08-09 10:20:13.225 7115-7315 UwbMangerImpl
2023-08-09 10:20:13.237 2472-5233 NearbyUWB com.google.android.gms.persistent I (REDACTED) onGetService: Create client bridge with key %s
2023-08-09 10:20:13.238 2472-5233 NearbyUWB com.google.android.gms.persistent I (REDACTED) Analytics is enabled for package %s
2023-08-09 10:20:13.257 2472-5233 NearbyUWB com.google.android.gms.persistent I (REDACTED) Client %s with package name %s, 0p Identifier %s, and sdk version %s has connected.
2023-08-09 10:20:13.264 1281-1828 UwbConfManager system_server D getCapsInfo for protocol: generic
2023-08-09 10:20:13.264 1281-1828 uwb system_server D uwb_uci_jni_rust::uci_jni_android_new: Java_com_android_server_uwb_jni_NativeUwbManager_nativeGetCapsInfo: enter
2023-08-09 10:20:13.266 1281-2605 uwb system_server D uwb_core::uci::uci_manager: Received cmd: SendUciCommand { cmd: CoreGetCapsInfo }
2023-08-09 10:20:13.267 836-836 qorvo.uwb....ckend_fira android.hardware.qorvo.uwb.service I uci_backend_fira_core_get_caps_info: MT/GID/OID 4003 CMD
2023-08-09 10:20:13.267 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:13.267 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I ack_handler
2023-08-09 10:20:13.268 1281-1828 UwbConfManager system_server I getCapsInfo respData: UwbTlvData { status = 0 length = 32, tlvs = [0004010101010104010101010201030301060401090501030601020701020801010901010A01010B01090C010A0D01010E01080F05000000000010010F110100A0017FA10400000F00A201F8A30103A4020100A5020001A603101112A70402000000E30101C00101E50407000000E60101E70101E4010E] }
2023-08-09 10:20:13.269 1281-1828 CccDecoder system_server W SUPPORTED_MIN_UWB_INITIATION_TIME_MS not found
2023-08-09 10:20:13.271 7115-7328 LoggingKt
2023-08-09 10:20:13.352 7115-7157 LoggingKt
2023-08-09 10:20:13.833 7115-7327 LoggingKt
2023-08-09 10:20:13.835 7115-7157 LoggingKt
2023-08-09 10:20:13.839 7115-7157 LoggingKt
2023-08-09 10:20:13.839 7115-7157 LoggingKt
2023-08-09 10:20:13.866 2472-7302 NearbyUWB com.google.android.gms.persistent I start ranging called. [CONTEXT service_id=49 ]
2023-08-09 10:20:13.867 2472-7302 UwbBackend com.google.android.gms.persistent I Opens UWB session with bundle parameters:
2023-08-09 10:20:13.867 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: aoa_result_request, value: 1
2023-08-09 10:20:13.867 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: has_ranging_control_phase, value: false
2023-08-09 10:20:13.867 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: ul_tdoa_random_window, value: 0
2023-08-09 10:20:13.867 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: session_data_transfer_status_ntf_config, value: false
2023-08-09 10:20:13.867 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: range_data_ntf_proximity_near, value: 0
2023-08-09 10:20:13.867 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: is_tx_adaptive_payload_power_enabled, value: false
2023-08-09 10:20:13.867 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: is_diagnostics_enabled, value: false
2023-08-09 10:20:13.867 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: rframe_config, value: 3
2023-08-09 10:20:13.867 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: max_ranging_round_retries, value: 0
2023-08-09 10:20:13.867 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: psdu_data_rate, value: 0
2023-08-09 10:20:13.867 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: is_rssi_reporting_enabled, value: false
2023-08-09 10:20:13.867 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: data_repetition_count, value: 0
2023-08-09 10:20:13.867 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: fcs_type, value: 0
2023-08-09 10:20:13.867 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: range_data_ntf_aoa_elevation_lower, value: -1.5707963267948966
2023-08-09 10:20:13.867 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: range_data_ntf_aoa_elevation_upper, value: 1.5707963267948966
2023-08-09 10:20:13.867 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: device_role, value: 0
2023-08-09 10:20:13.867 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: device_type, value: 0
2023-08-09 10:20:13.868 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: block_stride_length, value: 0
2023-08-09 10:20:13.868 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: prf_mode, value: 0
2023-08-09 10:20:13.868 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: slot_duration_rstu, value: 2400
2023-08-09 10:20:13.868 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: protocol_version, value: 1.1
2023-08-09 10:20:13.868 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: slots_per_ranging_round, value: 6
2023-08-09 10:20:13.868 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: min_frames_per_rr, value: 1
2023-08-09 10:20:13.868 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: vendor_id, value: [7, 8]
2023-08-09 10:20:13.868 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: ranging_error_streak_timeout_ms, value: 10000
2023-08-09 10:20:13.868 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: ranging_interval_ms, value: 200
2023-08-09 10:20:13.868 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: dest_address_list, value: [-3912783651254829056]
2023-08-09 10:20:13.868 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: sfd_id, value: 2
2023-08-09 10:20:13.868 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: filter_type, value: 1
2023-08-09 10:20:13.868 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: num_of_msrmt_focus_on_range, value: 0
2023-08-09 10:20:13.868 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: channel_number, value: 5
2023-08-09 10:20:13.868 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: session_priority, value: 50
2023-08-09 10:20:13.868 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: is_key_rotation_enabled, value: false
2023-08-09 10:20:13.868 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: session_type, value: 0
2023-08-09 10:20:13.868 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: ul_tdoa_tx_timestamp_type, value: 0
2023-08-09 10:20:13.868 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: sts_config, value: 0
2023-08-09 10:20:13.868 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: num_of_msrmt_focus_on_aoa_elevation, value: 0
2023-08-09 10:20:13.868 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: in_band_termination_attempt_count, value: 3
2023-08-09 10:20:13.868 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: range_data_ntf_proximity_far, value: 20000
2023-08-09 10:20:13.868 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: bprf_phr_data_rate, value: 0
2023-08-09 10:20:13.868 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: sts_length, value: 1
2023-08-09 10:20:13.868 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: initiation_time_ms, value: 0
2023-08-09 10:20:13.868 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: aoa_type, value: 0
2023-08-09 10:20:13.868 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: has_time_of_flight_report, value: true
2023-08-09 10:20:13.868 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: has_angle_of_arrival_figure_of_merit_report, value: false
2023-08-09 10:20:13.868 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: session_key, value: null
2023-08-09 10:20:13.868 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: mtu_size, value: 1048
2023-08-09 10:20:13.868 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: has_angle_of_arrival_azimuth_report, value: false
2023-08-09 10:20:13.868 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: mac_address_mode, value: 0
2023-08-09 10:20:13.868 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: max_number_of_measurements, value: 0
2023-08-09 10:20:13.868 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: preamble_duration, value: 1
2023-08-09 10:20:13.868 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: key_rotation_rate, value: 0
2023-08-09 10:20:13.868 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: inter_frame_interval, value: 1
2023-08-09 10:20:13.868 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: bundle_version, value: 1
2023-08-09 10:20:13.868 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: scheduled_mode, value: 1
2023-08-09 10:20:13.868 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: has_angle_of_arrival_elevation_report, value: false
2023-08-09 10:20:13.868 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: static_sts_iv, value: [1, 2, 3, 4, 5, 6]
2023-08-09 10:20:13.869 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: application_data_endpoint, value: 0
2023-08-09 10:20:13.869 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: range_data_ntf_config, value: 1
2023-08-09 10:20:13.869 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: ranging_round_usage, value: 2
2023-08-09 10:20:13.869 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: protocol_name, value: fira
2023-08-09 10:20:13.869 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: has_control_message, value: true
2023-08-09 10:20:13.869 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: has_result_report_phase, value: true
2023-08-09 10:20:13.869 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: device_address, value: 2962242654902943744
2023-08-09 10:20:13.869 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: diagrams_frame_reports_fields_flags, value: 0
2023-08-09 10:20:13.869 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: measurement_report_phase, value: 0
2023-08-09 10:20:13.869 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: absolute_initiation_time_us, value: 0
2023-08-09 10:20:13.869 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: measurement_report_type, value: 0
2023-08-09 10:20:13.869 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: ul_tdoa_device_id, value: null
2023-08-09 10:20:13.869 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: preamble_code_index, value: 9
2023-08-09 10:20:13.869 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: ul_tdoa_device_id_type, value: 0
2023-08-09 10:20:13.869 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: session_id, value: 1
2023-08-09 10:20:13.869 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: range_data_ntf_aoa_azimuth_lower, value: -3.141592653589793
2023-08-09 10:20:13.869 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: range_data_ntf_aoa_azimuth_upper, value: 3.141592653589793
2023-08-09 10:20:13.869 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: subsession_key, value: null
2023-08-09 10:20:13.869 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: multi_node_mode, value: 0
2023-08-09 10:20:13.869 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: num_of_msrmt_focus_on_aoa_azimuth, value: 0
2023-08-09 10:20:13.869 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: ul_tdoa_tx_interval, value: 2000
2023-08-09 10:20:13.869 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: hopping_mode, value: 1
2023-08-09 10:20:13.869 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: sts_segment_count, value: 1
2023-08-09 10:20:13.869 2472-7302 UwbBackend com.google.android.gms.persistent I UWB parameter: link_layer_mode, value: 0
2023-08-09 10:20:13.875 2472-7302 Uwb.Rangin...r@281a723] com.google.android.gms.persistent V openSession - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:13.881 1281-1828 UwbSessionManager system_server I initSession() - sessionId: 1, sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472], sessionType: 0
2023-08-09 10:20:13.882 1281-1828 UwbSessionManager system_server D Found a 3p app/service in the attribution source of request: android.content.AttributionSource@d7233247
2023-08-09 10:20:13.883 1281-1828 UwbSessionManager system_server D Detected start of non privileged FIRA session from android.content.AttributionSource@d7233247
2023-08-09 10:20:13.884 1281-7356 uwb system_server D uwb_uci_jni_rust::uci_jni_android_new: Java_com_android_server_uwb_jni_NativeUwbManager_nativeSessionInit: enter
2023-08-09 10:20:13.884 1281-2607 uwb system_server D uwb_core::uci::uci_manager: Received cmd: SendUciCommand { cmd: SessionInit { session_id: 1, session_type: FiraRangingSession } }
2023-08-09 10:20:13.885 836-836 qorvo.uwb....nd_manager android.hardware.qorvo.uwb.service I uci_backend_manager_session_init: MT/GID/OID 2100 CMD
2023-08-09 10:20:13.885 836-836 qorvo.uwb....ckend_fira android.hardware.qorvo.uwb.service I uci_backend_fira_session_init: MT/GID/OID 4100 CMD
2023-08-09 10:20:13.885 836-836 qorvo.uwb.fira_helper android.hardware.qorvo.uwb.service I call_fira: call_id 1 session_id 1
2023-08-09 10:20:13.885 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I ack_handler
2023-08-09 10:20:13.885 836-836 qorvo.uwb....ckend_fira android.hardware.qorvo.uwb.service I uci_backend_fira_session_init: MT/GID/OID 4100 RSP 0
2023-08-09 10:20:13.885 836-836 qorvo.uwb....ckend_fira android.hardware.qorvo.uwb.service I state_notification_with_code: MT/GID/OID 6102 NTF 0 (0)
2023-08-09 10:20:13.887 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:13.888 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onSessionStatusNotificationReceived
2023-08-09 10:20:13.888 1281-2614 NativeUwbManager system_server D onSessionStatusNotificationReceived(1, 0, 0)
2023-08-09 10:20:13.888 1281-2614 UwbSessionManager system_server I onSessionStatusNotificationReceived - Session ID : 1, state : INIT, reasonCode:0
2023-08-09 10:20:13.888 1281-7356 UwbConfManager system_server D setAppConfigurations for protocol: fira
2023-08-09 10:20:13.888 1281-7356 uwb system_server D uwb_uci_jni_rust::uci_jni_android_new: Java_com_android_server_uwb_jni_NativeUwbManager_nativeSetAppConfigurations: enter
2023-08-09 10:20:13.888 1281-2607 uwb system_server D uwb_core::uci::uci_manager: Received cmd: SendUciCommand { cmd: SessionSetAppConfig { session_id: 1, config_tlvs: [AppConfigTlv { cfg_id: DeviceType, v: [0] }, AppConfigTlv { cfg_id: RangingRoundUsage, v: [2] }, AppConfigTlv { cfg_id: StsConfig, v: [0] }, AppConfigTlv { cfg_id: MultiNodeMode, v: [0] }, AppConfigTlv { cfg_id: ChannelNumber, v: [5] }, AppConfigTlv { cfg_id: NoOfControlee, v: [1] }, AppConfigTlv { cfg_id: DeviceMacAddress, v: [28, 41] }, AppConfigTlv { cfg_id: SlotDuration, v: [96, 9] }, AppConfigTlv { cfg_id: MacFcsType, v: [0] }, AppConfigTlv { cfg_id: RangingRoundControl, v: [3] }, AppConfigTlv { cfg_id: AoaResultReq, v: [1] }, AppConfigTlv { cfg_id: RngDataNtf, v: [1] }, AppConfigTlv { cfg_id: RngDataNtfProximityNear, v: [0, 0] }, AppConfigTlv { cfg_id: RngDataNtfProximityFar, v: [32, 78] }, AppConfigTlv { cfg_id: DeviceRole, v: [0] }, AppConfigTlv { cfg_id: RframeConfig, v: [3] }, AppConfigTlv { cfg_id: RssiReporting, v: [1] }, AppConfigTlv { cfg_id: PreambleCodeIndex, v: [9] }, AppConfigTlv { cfg_id: SfdId, v: [2] }, AppConfigTlv { cfg_id: PsduDataRate, v: [0] }, AppConfigTlv { cfg_id: PreambleDuration, v: [1] }, AppConfigTlv { cfg_id: RangingTimeStruct, v: [1] }, AppConfigTlv { cfg_id: SlotsPerRr, v: [6] }, AppConfigTlv { cfg_id: TxAdaptivePayloadPower, v: [0] }, AppConfigTlv { cfg_id: PrfMode, v: [0] }, AppConfigTlv { cfg_id: ScheduledMode, v: [1] }, AppConfigTlv { cfg_id: KeyRotation, v: [0] }, AppConfigTlv { cfg_id: KeyRotationRate, v: [0] }, AppConfigTlv { cfg_id: SessionPriority, v: [50] }, AppConfigTlv { cfg_id: MacAddressMode, v: [0] }, AppConfigTlv { cfg_id: NumberOfStsSegments, v: [1] }, AppConfigTlv { cfg_id: MaxRrRetry, v: [0, 0] }, AppConfigTlv { cfg_id: HoppingMode, v: [1] }, AppConfigTlv { cfg_id: BlockStrideLength, v: [0] }, AppConfigTlv { cfg_id: ResultReportConfig, v: [1] }, AppConfigTlv { cfg_id: InBandTerminationAttemptCount, v: [3] }, AppConfigTlv { cfg_id: BprfPhrDataRate, v: [0] }, AppConfigTlv { cfg_id: StsLength, v: [1] }, AppConfigTlv { cfg_id: RangingInterval, v: [200, 0, 0, 0] }, AppConfigTlv { cfg_id: DstMacAddress, v: [179, 201] }, AppConfigTlv { cfg_id: UwbInitiationTime, v: [0, 0, 0, 0] }, AppConfigTlv { cfg_id: VendorId, v: "redacted" }, AppConfigTlv { cfg_id: StaticStsIv, v: "redacted" }] } }
2023-08-09 10:20:13.888 836-836 qorvo.uwb....nd_manager android.hardware.qorvo.uwb.service I uci_backend_manager_session_set_app_config: MT/GID/OID 2103 CMD
2023-08-09 10:20:13.889 836-836 qorvo.uwb....ckend_fira android.hardware.qorvo.uwb.service I uci_backend_fira_session_set_app_config: MT/GID/OID 4103 CMD
2023-08-09 10:20:13.889 836-836 qorvo.uwb....ckend_fira android.hardware.qorvo.uwb.service I uci_backend_fira_session_set_app_config: session_id=1
2023-08-09 10:20:13.889 836-836 qorvo.uwb.fira_helper android.hardware.qorvo.uwb.service I call_fira: call_id 10 session_id 1
2023-08-09 10:20:13.889 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:13.889 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I ack_handler
2023-08-09 10:20:13.889 836-836 qorvo.uwb....ckend_fira android.hardware.qorvo.uwb.service I uci_backend_fira_session_set_app_config: mac_state=3
2023-08-09 10:20:13.889 836-836 qorvo.uwb....ckend_fira android.hardware.qorvo.uwb.service I uci_backend_fira_session_set_app_config: uci_state=0
2023-08-09 10:20:13.889 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I ack_handler
2023-08-09 10:20:13.889 836-836 qorvo.uwb.fira_helper android.hardware.qorvo.uwb.service I call_fira: call_id 10 session_id 1
2023-08-09 10:20:13.889 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:13.889 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I ack_handler
2023-08-09 10:20:13.889 836-836 qorvo.uwb....ckend_fira android.hardware.qorvo.uwb.service I uci_backend_fira_session_set_app_config: mac_state=3
2023-08-09 10:20:13.889 836-836 qorvo.uwb.fira_helper android.hardware.qorvo.uwb.service I call_fira: call_id 9 session_id 1
2023-08-09 10:20:13.889 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:13.889 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I ack_handler
2023-08-09 10:20:13.889 836-836 qorvo.uwb.fira_helper android.hardware.qorvo.uwb.service I call_fira: call_id 5 session_id 1
2023-08-09 10:20:13.889 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I ack_handler
2023-08-09 10:20:13.889 836-836 qorvo.uwb....ckend_fira android.hardware.qorvo.uwb.service I uci_backend_fira_session_set_app_config: MT/GID/OID 4103 RSP 0
2023-08-09 10:20:13.889 836-836 qorvo.uwb....ckend_fira android.hardware.qorvo.uwb.service I state_notification_with_code: MT/GID/OID 6102 NTF 3 (0)
2023-08-09 10:20:13.890 1281-7356 UwbConfManager system_server I setAppConfigurations respData: UwbConfigStatusData { status = 0 length = 0, tlvs = [[]] }
2023-08-09 10:20:13.890 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:13.890 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onSessionStatusNotificationReceived
2023-08-09 10:20:13.890 1281-2614 NativeUwbManager system_server D onSessionStatusNotificationReceived(1, 3, 0)
2023-08-09 10:20:13.890 1281-2614 UwbSessionManager system_server I onSessionStatusNotificationReceived - Session ID : 1, state : IDLE, reasonCode:0
2023-08-09 10:20:13.890 2472-5233 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingOpened - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:13.890 1281-7356 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingOpened
2023-08-09 10:20:13.891 1281-1841 UwbSessionManager system_server I sessionInit() : finish - sessionId : 1
2023-08-09 10:20:13.891 2472-7302 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V start - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:13.891 1281-4606 UwbSessionManager system_server I startRanging() - sessionId: 1, sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:13.892 1281-7357 uwb system_server D uwb_uci_jni_rust::uci_jni_android_new: Java_com_android_server_uwb_jni_NativeUwbManager_nativeRangingStart: enter
2023-08-09 10:20:13.892 1281-2607 uwb system_server D uwb_core::uci::uci_manager: Received cmd: SendUciCommand { cmd: SessionStart { session_id: 1 } }
2023-08-09 10:20:13.892 836-836 qorvo.uwb....ckend_fira android.hardware.qorvo.uwb.service I uci_backend_fira_ranging_start: MT/GID/OID 4200 CMD
2023-08-09 10:20:13.892 836-836 qorvo.uwb.fira_helper android.hardware.qorvo.uwb.service I call_fira: call_id 10 session_id 1
2023-08-09 10:20:13.892 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:13.892 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I ack_handler
2023-08-09 10:20:13.892 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I ack_handler
2023-08-09 10:20:13.892 836-836 qorvo.uwb.fira_helper android.hardware.qorvo.uwb.service I call_fira: call_id 2 session_id 1
2023-08-09 10:20:13.893 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I ack_handler
2023-08-09 10:20:13.893 836-836 qorvo.uwb....ckend_fira android.hardware.qorvo.uwb.service I uci_backend_fira_ranging_start: MT/GID/OID 4200 RSP 0
2023-08-09 10:20:13.893 836-836 qorvo.uwb....ckend_fira android.hardware.qorvo.uwb.service I state_notification_with_code: MT/GID/OID 6102 NTF 2 (0)
2023-08-09 10:20:13.894 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:13.894 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onSessionStatusNotificationReceived
2023-08-09 10:20:13.894 1281-2614 NativeUwbManager system_server D onSessionStatusNotificationReceived(1, 2, 0)
2023-08-09 10:20:13.894 1281-2614 UwbSessionManager system_server I onSessionStatusNotificationReceived - Session ID : 1, state : ACTIVE, reasonCode:0
2023-08-09 10:20:13.894 1281-7357 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingStarted
2023-08-09 10:20:13.894 2472-5233 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingStarted - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:13.894 2472-25089 NearbyUWB com.google.android.gms.persistent I (REDACTED) Ranging initialized: %s
2023-08-09 10:20:13.897 7115-7115 UwbClientSessionScope
2023-08-09 10:20:14.037 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:14.038 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:14.038 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:14.039 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 0, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 37, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [0, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:14.040 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:14.040 1281-2614 UwbSessionManager system_server V Starting error timer for 10000 ms.
2023-08-09 10:20:14.040 2472-5233 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:14.150 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:14.151 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:14.151 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:14.152 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 12, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 36, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x01000000, RSSI = 0}], RawNotificationData = [12, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:14.154 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:14.154 2472-5233 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:14.348 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:14.349 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:14.349 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:14.350 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 13, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [13, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:14.351 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:14.351 2472-2495 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:14.548 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:14.549 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:14.549 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:14.550 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 14, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [14, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:14.551 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:14.552 2472-2495 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:14.749 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:14.750 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:14.751 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:14.751 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 15, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [15, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:14.755 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:14.755 2472-2495 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:14.948 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:14.949 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:14.950 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:14.950 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 16, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [16, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:14.953 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:14.953 2472-2495 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:15.237 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:15.237 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:15.238 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:15.239 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 17, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 37, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [17, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:15.240 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:15.241 2472-5233 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:15.350 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:15.350 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:15.351 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:15.351 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 18, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 34, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [18, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:15.352 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:15.352 2472-5233 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:15.590 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:15.590 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:15.591 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:15.591 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 19, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 36, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x01000000, RSSI = 0}], RawNotificationData = [19, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:15.591 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:15.591 2472-5233 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:15.748 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:15.749 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:15.749 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:15.750 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 20, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [20, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:15.751 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:15.751 2472-5233 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:15.948 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:15.949 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:15.950 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:15.950 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 21, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [21, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:15.952 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:15.952 2472-5233 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:16.148 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:16.149 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:16.149 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:16.150 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 22, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [22, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:16.151 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:16.151 2472-5233 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:16.348 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:16.349 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:16.349 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:16.349 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 23, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [23, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:16.351 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:16.351 2472-2495 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:16.550 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:16.550 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:16.551 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:16.551 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 24, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 36, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x01000000, RSSI = 0}], RawNotificationData = [24, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:16.551 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:16.552 2472-2495 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:16.748 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:16.749 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:16.749 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:16.749 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 25, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [25, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:16.750 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:16.750 2472-2495 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:16.948 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:16.948 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:16.948 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:16.948 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 26, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [26, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:16.949 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:16.949 2472-2495 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:17.148 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:17.148 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:17.148 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:17.148 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 27, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [27, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:17.149 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:17.149 2472-2495 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:17.348 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:17.348 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:17.348 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:17.348 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 28, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [28, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:17.349 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:17.349 2472-3922 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:17.637 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:17.637 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:17.637 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:17.637 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 29, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 37, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [29, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:17.638 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:17.638 2472-3922 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:17.750 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:17.751 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:17.751 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:17.751 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 30, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 34, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [30, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:17.752 2472-3922 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:17.753 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:17.990 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:17.991 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:17.992 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:17.992 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 31, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 36, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x01000000, RSSI = 0}], RawNotificationData = [31, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:17.993 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:17.994 2472-5233 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:18.148 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:18.149 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:18.150 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:18.150 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 32, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [32, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:18.151 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:18.152 2472-3922 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:18.347 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:18.348 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:18.349 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:18.349 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 33, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [33, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:18.351 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:18.351 2472-5233 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:18.548 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:18.549 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:18.549 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:18.549 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 34, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [34, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:18.551 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:18.551 2472-5233 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:18.748 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:18.749 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:18.750 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:18.750 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 35, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [35, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:18.751 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:18.751 2472-5233 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:18.950 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:18.950 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:18.950 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:18.951 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 36, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 36, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x01000000, RSSI = 0}], RawNotificationData = [36, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:18.952 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:18.952 2472-5233 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:19.148 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:19.149 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:19.149 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:19.149 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 37, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [37, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:19.150 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:19.151 2472-5233 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:19.348 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:19.349 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:19.350 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:19.350 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 38, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [38, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:19.351 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:19.351 2472-5233 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:19.548 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:19.548 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:19.548 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:19.549 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 39, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [39, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:19.549 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:19.549 2472-5233 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:19.748 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:19.749 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:19.749 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:19.749 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 40, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [40, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:19.751 2472-5233 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:19.751 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:20.037 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:20.037 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:20.038 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:20.038 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 41, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 37, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [41, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:20.040 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:20.040 2472-5233 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:20.150 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:20.150 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:20.151 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:20.152 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 42, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 34, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [42, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:20.153 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:20.153 2472-5233 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:20.396 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:20.397 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:20.397 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:20.397 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 43, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 38, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x04000000, RSSI = 0}], RawNotificationData = [43, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:20.399 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:20.399 2472-3922 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:20.548 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:20.550 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:20.550 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:20.551 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 44, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [44, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:20.552 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:20.553 2472-3922 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:20.748 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:20.749 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:20.749 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:20.750 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 45, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [45, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:20.751 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:20.751 2472-3922 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:20.948 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:20.949 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:20.950 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:20.950 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 46, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [46, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:20.952 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:20.953 2472-3922 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:21.148 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:21.149 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:21.149 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:21.150 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 47, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [47, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:21.151 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:21.151 2472-3922 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:21.358 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:21.359 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:21.360 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:21.360 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 48, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 0, NLoS = 0, Distance = 65, AoaAzimuth = 29.453125, AoaAzimuthFom = 42, AoaElevation = 46.242188, AoaElevationFom = 53, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -97}], RawNotificationData = [48, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 0, 0, 65, 0, -70, 14, 42, 31, 23, 53, 0, 0, 0, 0, 0, 0, 0, -62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:21.362 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:21.364 2472-3336 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:21.368 2472-7302 NearbyUWB com.google.android.gms.persistent I (REDACTED) Ranging Result: %s %s
2023-08-09 10:20:21.376 7115-7313 LoggingKt
2023-08-09 10:20:21.380 7115-7313 MainActivity
2023-08-09 10:20:21.548 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:21.549 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:21.549 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:21.549 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 49, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [49, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:21.550 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:21.550 1281-2614 UwbSessionManager system_server V Starting error timer for 10000 ms.
2023-08-09 10:20:21.550 2472-3336 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:21.748 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:21.749 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:21.749 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:21.749 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 50, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [50, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:21.750 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:21.750 2472-3336 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:21.948 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:21.949 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:21.950 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:21.950 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 51, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [51, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:21.952 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:21.952 2472-3336 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:22.148 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:22.149 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:22.150 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:22.150 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 52, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [52, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:22.151 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:22.152 2472-3336 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:22.437 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:22.437 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:22.438 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:22.438 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 53, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 37, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [53, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:22.439 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:22.439 2472-5233 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:22.550 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:22.550 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:22.551 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:22.551 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 54, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 34, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [54, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:22.552 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:22.552 2472-5233 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:22.796 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:22.796 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:22.797 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:22.797 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 55, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 38, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x04000000, RSSI = 0}], RawNotificationData = [55, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:22.798 2472-5233 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:22.798 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:22.949 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:22.950 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:22.950 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:22.950 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 56, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [56, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:22.953 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:22.954 2472-5233 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:23.148 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:23.148 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:23.149 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:23.149 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 57, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [57, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:23.150 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:23.151 2472-4881 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:23.348 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:23.349 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:23.349 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:23.349 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 58, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [58, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:23.351 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:23.351 2472-5233 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:23.548 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:23.549 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:23.550 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:23.550 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 59, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [59, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:23.551 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:23.553 2472-5233 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:23.758 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:23.758 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:23.759 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:23.759 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 60, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 0, NLoS = 0, Distance = 63, AoaAzimuth = 43.445312, AoaAzimuthFom = 38, AoaElevation = 27.023438, AoaElevationFom = 73, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -103}], RawNotificationData = [60, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 0, 0, 63, 0, -71, 21, 38, -125, 13, 73, 0, 0, 0, 0, 0, 0, 0, -50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:23.761 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:23.761 2472-5233 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:23.762 2472-7081 NearbyUWB com.google.android.gms.persistent I (REDACTED) Ranging Result: %s %s
2023-08-09 10:20:23.764 7115-7313 LoggingKt
2023-08-09 10:20:23.765 7115-7313 MainActivity
2023-08-09 10:20:23.948 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:23.948 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:23.949 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:23.949 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 61, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [61, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:23.950 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:23.951 1281-2614 UwbSessionManager system_server V Starting error timer for 10000 ms.
2023-08-09 10:20:23.951 2472-5233 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:24.148 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:24.149 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:24.149 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:24.149 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 62, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [62, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:24.150 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:24.151 2472-5233 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:24.348 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:24.348 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:24.349 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:24.349 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 63, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [63, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:24.350 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:24.351 2472-4881 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:24.548 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:24.549 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:24.549 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:24.549 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 64, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [64, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:24.550 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:24.550 2472-4881 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:24.837 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:24.837 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:24.838 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:24.838 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 65, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 37, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [65, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:24.839 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:24.839 2472-5233 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:24.950 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:24.951 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:24.951 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:24.951 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 66, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 34, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [66, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:24.952 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:24.953 2472-5233 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:25.196 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:25.197 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:25.197 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:25.197 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 67, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 38, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x04000000, RSSI = 0}], RawNotificationData = [67, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:25.198 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:25.199 2472-5233 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:25.348 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:25.348 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:25.348 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:25.348 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 68, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [68, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:25.349 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:25.349 2472-2495 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:25.548 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:25.549 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:25.549 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:25.549 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 69, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [69, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:25.549 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:25.550 2472-2495 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:25.748 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:25.749 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:25.749 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:25.749 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 70, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [70, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:25.750 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:25.750 2472-2495 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:25.948 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:25.949 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:25.950 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:25.950 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 71, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [71, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:25.951 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:25.951 2472-2495 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:26.158 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:26.159 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:26.160 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:26.160 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 72, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 0, NLoS = 0, Distance = 64, AoaAzimuth = 70.359375, AoaAzimuthFom = 38, AoaElevation = 28.476562, AoaElevationFom = 69, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -97}], RawNotificationData = [72, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 0, 0, 64, 0, 46, 35, 38, 61, 14, 69, 0, 0, 0, 0, 0, 0, 0, -62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:26.164 2472-2495 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:26.164 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:26.167 2472-7303 NearbyUWB com.google.android.gms.persistent I (REDACTED) Ranging Result: %s %s
2023-08-09 10:20:26.171 7115-7325 LoggingKt
2023-08-09 10:20:26.173 7115-7325 MainActivity
2023-08-09 10:20:26.347 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:26.348 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:26.349 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:26.350 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 73, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [73, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:26.351 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:26.351 1281-2614 UwbSessionManager system_server V Starting error timer for 10000 ms.
2023-08-09 10:20:26.351 2472-2495 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:26.548 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:26.549 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:26.549 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:26.550 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 74, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [74, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:26.551 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:26.551 2472-2495 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:26.748 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:26.749 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:26.750 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:26.750 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 75, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [75, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:26.751 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:26.752 2472-2495 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:26.949 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:26.950 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:26.951 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:26.952 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 76, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [76, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:26.954 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:26.954 2472-2495 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:27.237 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:27.237 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:27.238 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:27.238 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 77, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 37, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [77, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:27.239 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:27.246 2472-2495 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:27.350 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:27.351 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:27.351 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:27.351 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 78, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 34, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [78, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:27.351 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:27.351 2472-5233 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:27.596 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:27.597 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:27.597 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:27.598 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 79, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 38, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x04000000, RSSI = 0}], RawNotificationData = [79, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:27.599 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:27.600 2472-5233 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:27.748 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:27.748 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:27.749 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:27.749 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 80, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [80, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:27.750 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:27.751 2472-5233 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:27.948 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:27.949 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:27.950 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:27.950 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 81, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [81, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:27.952 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:27.952 2472-5233 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:28.148 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:28.148 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:28.149 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:28.149 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 82, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [82, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:28.150 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:28.150 2472-5233 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:28.348 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:28.349 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:28.349 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:28.349 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 83, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [83, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:28.350 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:28.350 2472-5233 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:28.558 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:28.558 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:28.559 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:28.559 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 84, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 0, NLoS = 0, Distance = 64, AoaAzimuth = 58.742188, AoaAzimuthFom = 49, AoaElevation = 49.34375, AoaElevationFom = 76, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -103}], RawNotificationData = [84, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 0, 0, 64, 0, 95, 29, 49, -84, 24, 76, 0, 0, 0, 0, 0, 0, 0, -50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:28.560 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:28.560 2472-5233 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:28.561 2472-7303 NearbyUWB com.google.android.gms.persistent I (REDACTED) Ranging Result: %s %s
2023-08-09 10:20:28.563 7115-7310 LoggingKt
2023-08-09 10:20:28.564 7115-7310 MainActivity
2023-08-09 10:20:28.748 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:28.749 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:28.750 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:28.750 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 85, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [85, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:28.752 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:28.752 1281-2614 UwbSessionManager system_server V Starting error timer for 10000 ms.
2023-08-09 10:20:28.752 2472-5233 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:28.948 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:28.949 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:28.949 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:28.950 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 86, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [86, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:28.951 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:28.951 2472-5233 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:29.148 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:29.149 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:29.150 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:29.151 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 87, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [87, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:29.152 2472-5233 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:29.153 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:29.348 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:29.351 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:29.352 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:29.352 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 88, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [88, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:29.355 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:29.356 2472-5233 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:29.637 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:29.638 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:29.638 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:29.638 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 89, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 37, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [89, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:29.639 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:29.639 2472-5233 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:29.750 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:29.751 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:29.751 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:29.752 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 90, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 34, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [90, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:29.753 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:29.753 2472-5233 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:29.990 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:29.991 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:29.992 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:29.992 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 91, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 36, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x01000000, RSSI = 0}], RawNotificationData = [91, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:29.993 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:29.994 2472-5233 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:30.148 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:30.149 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:30.150 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:30.150 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 92, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [92, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:30.152 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:30.152 2472-5233 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:30.348 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:30.348 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:30.349 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:30.349 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 93, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [93, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:30.351 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:30.351 2472-4881 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:30.548 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:30.548 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:30.549 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:30.549 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 94, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [94, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:30.550 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:30.550 2472-4881 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:30.748 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:30.749 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:30.750 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:30.750 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 95, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [95, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:30.752 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:30.753 2472-4881 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:31.077 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:31.078 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:31.079 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:31.080 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 96, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 37, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [96, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:31.083 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:31.083 2472-4881 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:31.320 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:31.321 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:31.322 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:31.322 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 97, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 34, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [97, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:31.323 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:31.323 2472-2495 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:31.552 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:31.553 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:31.553 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:31.553 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 98, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [98, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:31.555 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:31.555 2472-2495 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:31.754 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:31.754 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:31.755 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:31.755 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 99, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [99, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:31.756 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:31.757 2472-2495 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:31.797 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:31.797 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:31.798 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:31.798 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 100, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 34, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [100, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:31.799 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:31.799 2472-2495 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:32.037 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:32.038 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:32.038 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:32.038 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 101, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 37, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [101, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:32.040 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:32.040 2472-2495 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:32.278 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:32.278 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:32.279 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:32.279 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 102, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 37, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [102, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:32.279 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:32.280 2472-5233 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:32.517 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:32.519 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:32.520 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:32.520 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 103, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 37, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [103, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:32.522 2472-5233 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:32.522 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:32.757 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:32.758 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:32.758 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:32.759 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 104, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 37, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [104, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:32.760 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:32.761 2472-5233 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:32.966 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:32.966 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:32.967 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:32.967 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 105, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [105, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:32.967 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:32.967 2472-5233 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:32.997 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:32.997 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:32.997 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:32.997 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 106, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 37, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [106, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:32.998 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:32.998 2472-5233 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:33.238 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:33.239 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:33.240 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:33.240 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 107, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 37, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [107, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:33.241 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:33.245 2472-3922 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:33.477 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:33.478 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:33.478 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:33.478 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 108, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 37, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [108, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:33.480 2472-2495 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:33.480 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:33.717 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:33.717 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:33.718 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:33.718 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 109, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 37, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [109, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:33.719 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:33.720 2472-3336 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:33.957 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:33.957 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:33.958 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:33.958 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 110, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 37, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [110, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:33.958 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:33.958 2472-3336 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:34.178 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:34.178 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:34.178 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:34.179 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 111, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [111, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:34.179 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:34.179 2472-3336 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:34.197 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:34.197 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:34.197 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:34.197 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 112, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 37, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [112, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:34.197 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:34.197 2472-3336 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:34.437 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:34.438 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:34.438 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:34.439 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 113, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 37, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [113, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:34.440 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:34.440 2472-3336 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:34.677 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:34.678 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:34.679 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:34.679 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 114, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 37, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [114, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:34.681 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:34.681 2472-3336 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:34.917 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:34.918 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:34.918 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:34.919 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 115, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 37, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [115, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:34.920 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:34.921 2472-3336 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:35.157 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:35.158 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:35.158 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:35.159 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 116, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 37, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [116, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:35.160 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:35.160 2472-3336 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:35.390 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:35.392 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:35.392 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:35.392 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 117, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [117, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:35.395 2472-5233 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:35.395 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:35.397 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:35.397 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:35.398 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:35.398 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 118, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 37, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [118, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:35.399 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:35.399 2472-5233 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:35.637 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:35.637 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:35.638 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:35.638 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 119, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 37, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [119, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:35.640 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:35.640 2472-5233 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:35.879 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:35.879 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:35.880 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:35.880 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 120, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 34, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [120, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:35.880 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:35.881 2472-5233 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:36.198 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:36.199 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:36.199 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:36.199 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 121, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [121, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:36.200 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:36.200 2472-5233 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:36.400 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:36.401 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:36.401 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:36.403 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 122, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [122, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:36.404 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:36.404 2472-2495 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:36.602 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:36.603 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:36.603 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:36.603 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 123, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [123, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:36.604 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:36.604 2472-2495 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:36.804 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:36.805 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:36.805 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:36.805 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 124, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [124, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:36.806 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:36.806 2472-2495 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:37.006 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:37.007 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:37.007 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:37.007 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 125, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [125, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:37.008 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:37.009 2472-2495 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:37.208 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:37.209 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:37.209 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:37.209 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 126, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [126, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:37.210 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:37.210 2472-2495 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:37.410 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:37.411 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:37.411 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:37.411 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 127, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [127, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:37.411 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:37.411 2472-3922 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:37.612 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:37.613 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:37.613 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:37.613 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 128, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [-128, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:37.613 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:37.614 2472-3922 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:37.814 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:37.815 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:37.815 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:37.815 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 129, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [-127, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:37.816 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:37.816 2472-3922 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:38.016 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:38.017 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:38.018 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:38.018 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 130, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [-126, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:38.019 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:38.019 2472-3922 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:38.218 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:38.218 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:38.219 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:38.219 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 131, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [-125, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:38.219 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:38.220 2472-3922 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:38.420 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:38.420 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:38.421 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:38.421 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 132, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [-124, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:38.422 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:38.423 2472-2495 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:38.622 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:38.623 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:38.623 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:38.623 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 133, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [-123, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:38.625 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:38.625 2472-2495 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:38.752 1281-1841 UwbSessionManager system_server W Continuous errors or no ranging results detected for 10000 ms. Stopping session
2023-08-09 10:20:38.752 1281-1841 UwbSessionManager system_server I stopRanging() - sessionId: 1, sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:38.754 1281-1841 UwbSessionManager system_server V Stop timeout: 3000
2023-08-09 10:20:38.756 1281-7372 uwb system_server D uwb_uci_jni_rust::uci_jni_android_new: Java_com_android_server_uwb_jni_NativeUwbManager_nativeRangingStop: enter
2023-08-09 10:20:38.756 1281-2605 uwb system_server D uwb_core::uci::uci_manager: Received cmd: SendUciCommand { cmd: SessionStop { session_id: 1 } }
2023-08-09 10:20:38.757 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:38.757 836-836 qorvo.uwb....ckend_fira android.hardware.qorvo.uwb.service I uci_backend_fira_ranging_stop: MT/GID/OID 4201 CMD
2023-08-09 10:20:38.757 836-836 qorvo.uwb.fira_helper android.hardware.qorvo.uwb.service I call_fira: call_id 10 session_id 1
2023-08-09 10:20:38.757 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:38.757 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I ack_handler
2023-08-09 10:20:38.757 836-836 qorvo.uwb.fira_helper android.hardware.qorvo.uwb.service I call_fira: call_id 3 session_id 1
2023-08-09 10:20:38.757 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I ack_handler
2023-08-09 10:20:38.757 836-836 qorvo.uwb....ckend_fira android.hardware.qorvo.uwb.service I uci_backend_fira_ranging_stop: MT/GID/OID 4201 RSP 0
2023-08-09 10:20:38.758 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:38.758 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-08-09 10:20:38.758 1281-2614 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 134, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 200, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = B3C9, RangingStatus = 37, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [-122, 0, 0, 0, 1, 0, 0, 0, 0, -56, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -77, -55, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-08-09 10:20:38.760 1281-2614 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-08-09 10:20:38.760 2472-2495 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:38.870 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:38.870 836-836 qorvo.uwb....ckend_fira android.hardware.qorvo.uwb.service I handle_session_stop: session (1) stopped for reason (0)
2023-08-09 10:20:38.870 836-836 qorvo.uwb....ckend_fira android.hardware.qorvo.uwb.service I state_notification_with_code: MT/GID/OID 6102 NTF 3 (0)
2023-08-09 10:20:38.871 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:38.871 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onSessionStatusNotificationReceived
2023-08-09 10:20:38.871 1281-2614 NativeUwbManager system_server D onSessionStatusNotificationReceived(1, 3, 0)
2023-08-09 10:20:38.872 1281-2614 UwbSessionManager system_server I onSessionStatusNotificationReceived - Session ID : 1, state : IDLE, reasonCode:0
2023-08-09 10:20:38.872 1281-7372 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingStopped
2023-08-09 10:20:38.872 2472-2495 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingStopped - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:38.873 2472-7303 NearbyUWB com.google.android.gms.persistent I (REDACTED) Ranging Suspended: %s reason code (%s)
2023-08-09 10:20:38.878 7115-7327 LoggingKt
2023-08-09 10:20:38.880 7115-7327 LoggingKt
2023-08-09 10:20:38.947 7115-7327 LoggingKt
2023-08-09 10:20:38.948 7115-7327 MainActivity
2023-08-09 10:20:38.948 7115-7327 LoggingKt
2023-08-09 10:20:40.180 7115-7310 LoggingKt
2023-08-09 10:20:40.180 7115-7310 LoggingKt
2023-08-09 10:20:40.181 7115-7310 LoggingKt
2023-08-09 10:20:40.182 7115-7310 LoggingKt
2023-08-09 10:20:40.241 7115-7328 LoggingKt
kotlinx.coroutines.JobCancellationException: StandaloneCoroutine was cancelled; job=StandaloneCoroutine{Cancelling}@4386110
2023-08-09 10:20:40.250 2472-7364 NearbyUWB com.google.android.gms.persistent I stop ranging called. [CONTEXT service_id=49 ]
2023-08-09 10:20:40.250 2472-7364 UwbBackend com.google.android.gms.persistent I UWB stopRanging called but isRanging is false.
2023-08-09 10:20:40.250 2472-7364 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V close - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:40.251 1281-3342 UwbSessionManager system_server I deinitSession() - sessionId: 1, sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:40.254 1281-7374 uwb system_server D uwb_uci_jni_rust::uci_jni_android_new: Java_com_android_server_uwb_jni_NativeUwbManager_nativeSessionDeInit: enter
2023-08-09 10:20:40.255 1281-2605 uwb system_server D uwb_core::uci::uci_manager: Received cmd: SendUciCommand { cmd: SessionDeinit { session_id: 1 } }
2023-08-09 10:20:40.255 836-836 qorvo.uwb....nd_manager android.hardware.qorvo.uwb.service I uci_backend_manager_session_deinit: MT/GID/OID 2101 CMD
2023-08-09 10:20:40.255 836-836 qorvo.uwb....ckend_fira android.hardware.qorvo.uwb.service I uci_backend_fira_session_deinit: MT/GID/OID 4101 CMD
2023-08-09 10:20:40.255 836-836 qorvo.uwb.fira_helper android.hardware.qorvo.uwb.service I call_fira: call_id 10 session_id 1
2023-08-09 10:20:40.267 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-08-09 10:20:40.267 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I ack_handler
2023-08-09 10:20:40.267 836-836 qorvo.uwb.fira_helper android.hardware.qorvo.uwb.service I call_fira: call_id 4 session_id 1
2023-08-09 10:20:40.267 836-836 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I ack_handler
2023-08-09 10:20:40.267 836-836 qorvo.uwb....ckend_fira android.hardware.qorvo.uwb.service I uci_backend_fira_session_deinit: MT/GID/OID 4101 RSP 0
2023-08-09 10:20:40.267 836-836 qorvo.uwb....ckend_fira android.hardware.qorvo.uwb.service I state_notification_with_code: MT/GID/OID 6102 NTF 1 (0)
2023-08-09 10:20:40.268 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-08-09 10:20:40.268 1281-2614 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onSessionStatusNotificationReceived
2023-08-09 10:20:40.268 1281-2614 NativeUwbManager system_server D onSessionStatusNotificationReceived(1, 1, 0)
2023-08-09 10:20:40.268 1281-2614 UwbSessionManager system_server I onSessionStatusNotificationReceived - Session ID : 1, state : DEINIT, reasonCode:0
2023-08-09 10:20:40.268 1281-7374 UwbSessionManager system_server I onRangingClosed - status : 0
2023-08-09 10:20:40.269 1281-7374 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingClosed
2023-08-09 10:20:40.269 2472-2495 Uwb.Rangin...n@1d5ce37] com.google.android.gms.persistent V onRangingClosed - sessionHandle: SessionHandle [id=83, package-name: com.google.android.gms, uid: 10137, pid: 2472]
2023-08-09 10:20:40.269 1281-1841 UwbSessionManager system_server D Detected end of non privileged FIRA session from android.content.AttributionSource@d7233247
2023-08-09 10:20:40.269 1281-1841 UwbSessionManager system_server I deinit finish : status :0
2023-08-09 10:20:40.269 1281-1841 UwbSessionManager system_server I onDeinit - Ignoring already deleted session 1
2023-08-09 10:20:40.282 7115-7328 LoggingKt
2023-08-09 10:20:40.282 7115-7328 MainActivity
ju...@google.com <ju...@google.com> #25
I'm the FSR for Ingenico at Google Cloud, and I was wondering if we could get back to Ingenico on that BUG ?
Thanks so much for your support !
rp...@google.com <rp...@google.com> #26
However we now see more disconnects and when ranging we seem to get a lot of other status messages with some ranging results. So general ranging stability seems to be worse.
Can you provide us more info on your test environment? How are you holding the devices? Are they facing each other or placed down, etc?
na...@gmail.com <na...@gmail.com> #27
The UWB beacons are on a table about three feet from the phone, which is handheld above the level of the table and plugged into the laptop via a USB-C cable to capture the log.
From past experience we know we can't have the phone on the table, as then it blocks reception.
na...@gmail.com <na...@gmail.com> #28
What I see now on the Fold is that some of the fields are coming through as null, but at least we get distance.
I have attached the logcat filtered on UWB for both the 7 Pro and Fold. Both are still waiting for the Android 13 September update and Estimote still haven't provided firmware for the beacons that will work with Android 14.
This time I was holding the beacons in one hand and the phone in the other and just getting them closer with varying phone orientation. So not very far apart and no obstructions, but I still see the nulls.
rp...@google.com <rp...@google.com> #29
This time I was holding the beacons in one hand and the phone in the other and just getting them closer with varying phone orientation.
Just to rule out any interop issue with the beacon. Can you try ranging between the 2 phones? Are you seeing a lot of nulls even with the 2 phones?
rp...@google.com <rp...@google.com> #30
In the 7pro logs above, I don't see a lot of errors (RangingStatus !== 0
) in the ranging data reported:
onRangeDataNotificationReceived : UwbRangingData
2023-09-14 11:05:02.075 1243-2595 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 68, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 9130, RangingStatus = 0, NLoS = 0, Distance = 141, AoaAzimuth = 53.429688, AoaAzimuthFom = 84, AoaElevation = -15.1328125, AoaElevationFom = 84, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -88}], RawNotificationData = [68, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -111, 48, 0, 0, -115, 0, -73, 26, 84, 111, -8, 84, 0, 0, 0, 0, 0, 0, 0, -80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
onRangeDataNotificationReceived : UwbRangingData
2023-09-14 11:05:02.311 1243-2595 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 69, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 9130, RangingStatus = 34, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x04000000, RSSI = 0}], RawNotificationData = [69, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -111, 48, 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
onRangeDataNotificationReceived : UwbRangingData
2023-09-14 11:05:02.544 1243-2595 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 70, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 9130, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [70, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -111, 48, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
onRangeDataNotificationReceived : UwbRangingData
2023-09-14 11:05:02.794 1243-2595 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 71, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 9130, RangingStatus = 0, NLoS = 0, Distance = 139, AoaAzimuth = 74.94531, AoaAzimuthFom = 84, AoaElevation = -22.125, AoaElevationFom = 88, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -91}], RawNotificationData = [71, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -111, 48, 0, 0, -117, 0, 121, 37, 84, -16, -12, 88, 0, 0, 0, 0, 0, 0, 0, -74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
onRangeDataNotificationReceived : UwbRangingData
2023-09-14 11:05:03.034 1243-2595 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 72, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 9130, RangingStatus = 0, NLoS = 0, Distance = 146, AoaAzimuth = 74.94531, AoaAzimuthFom = 84, AoaElevation = -23.804688, AoaElevationFom = 88, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -91}], RawNotificationData = [72, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -111, 48, 0, 0, -110, 0, 121, 37, 84, 25, -12, 88, 0, 0, 0, 0, 0, 0, 0, -74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
onRangeDataNotificationReceived : UwbRangingData
2023-09-14 11:05:03.274 1243-2595 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 73, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 9130, RangingStatus = 0, NLoS = 0, Distance = 146, AoaAzimuth = 74.94531, AoaAzimuthFom = 84, AoaElevation = -21.539062, AoaElevationFom = 88, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -91}], RawNotificationData = [73, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -111, 48, 0, 0, -110, 0, 121, 37, 84, 59, -11, 88, 0, 0, 0, 0, 0, 0, 0, -74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
onRangeDataNotificationReceived : UwbRangingData
2023-09-14 11:05:03.514 1243-2595 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 74, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 9130, RangingStatus = 0, NLoS = 0, Distance = 141, AoaAzimuth = 74.94531, AoaAzimuthFom = 84, AoaElevation = 63.585938, AoaElevationFom = 84, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -91}], RawNotificationData = [74, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -111, 48, 0, 0, -115, 0, 121, 37, 84, -53, 31, 84, 0, 0, 0, 0, 0, 0, 0, -74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
onRangeDataNotificationReceived : UwbRangingData
2023-09-14 11:05:03.754 1243-2595 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 75, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 9130, RangingStatus = 0, NLoS = 0, Distance = 141, AoaAzimuth = 74.94531, AoaAzimuthFom = 80, AoaElevation = 4.109375, AoaElevationFom = 88, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -91}], RawNotificationData = [75, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -111, 48, 0, 0, -115, 0, 121, 37, 80, 14, 2, 88, 0, 0, 0, 0, 0, 0, 0, -74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
onRangeDataNotificationReceived : UwbRangingData
2023-09-14 11:05:03.994 1243-2595 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 76, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 9130, RangingStatus = 0, NLoS = 0, Distance = 141, AoaAzimuth = 74.94531, AoaAzimuthFom = 84, AoaElevation = -4.25, AoaElevationFom = 84, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -91}], RawNotificationData = [76, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -111, 48, 0, 0, -115, 0, 121, 37, 84, -32, -3, 84, 0, 0, 0, 0, 0, 0, 0, -74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
onRangeDataNotificationReceived : UwbRangingData
2023-09-14 11:05:04.234 1243-2595 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 77, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 9130, RangingStatus = 0, NLoS = 0, Distance = 139, AoaAzimuth = 74.94531, AoaAzimuthFom = 84, AoaElevation = 74.94531, AoaElevationFom = 88, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -91}], RawNotificationData = [77, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -111, 48, 0, 0, -117, 0, 121, 37, 84, 121, 37, 88, 0, 0, 0, 0, 0, 0, 0, -74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
onRangeDataNotificationReceived : UwbRangingData
2023-09-14 11:05:04.474 1243-2595 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 78, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 9130, RangingStatus = 0, NLoS = 0, Distance = 139, AoaAzimuth = 74.94531, AoaAzimuthFom = 84, AoaElevation = -4.5859375, AoaElevationFom = 88, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -91}], RawNotificationData = [78, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -111, 48, 0, 0, -117, 0, 121, 37, 84, -75, -3, 88, 0, 0, 0, 0, 0, 0, 0, -74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
onRangeDataNotificationReceived : UwbRangingData
2023-09-14 11:05:04.715 1243-2595 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 79, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 9130, RangingStatus = 0, NLoS = 0, Distance = 137, AoaAzimuth = 74.94531, AoaAzimuthFom = 84, AoaElevation = -4.7265625, AoaElevationFom = 84, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -91}], RawNotificationData = [79, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -111, 48, 0, 0, -119, 0, 121, 37, 84, -93, -3, 84, 0, 0, 0, 0, 0, 0, 0, -74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
onRangeDataNotificationReceived : UwbRangingData
2023-09-14 11:05:04.954 1243-2595 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 80, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 9130, RangingStatus = 0, NLoS = 0, Distance = 140, AoaAzimuth = 74.94531, AoaAzimuthFom = 84, AoaElevation = -20.0, AoaElevationFom = 84, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -91}], RawNotificationData = [80, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -111, 48, 0, 0, -116, 0, 121, 37, 84, 0, -10, 84, 0, 0, 0, 0, 0, 0, 0, -74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
onRangeDataNotificationReceived : UwbRangingData
2023-09-14 11:05:05.194 1243-2595 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 81, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 9130, RangingStatus = 0, NLoS = 0, Distance = 144, AoaAzimuth = 74.94531, AoaAzimuthFom = 84, AoaElevation = -15.296875, AoaElevationFom = 84, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -91}], RawNotificationData = [81, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -111, 48, 0, 0, -112, 0, 121, 37, 84, 90, -8, 84, 0, 0, 0, 0, 0, 0, 0, -74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
onRangeDataNotificationReceived : UwbRangingData
2023-09-14 11:05:05.435 1243-2595 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 82, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 9130, RangingStatus = 0, NLoS = 0, Distance = 141, AoaAzimuth = 74.94531, AoaAzimuthFom = 84, AoaElevation = -2.875, AoaElevationFom = 84, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -91}], RawNotificationData = [82, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -111, 48, 0, 0, -115, 0, 121, 37, 84, -112, -2, 84, 0, 0, 0, 0, 0, 0, 0, -74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
onRangeDataNotificationReceived : UwbRangingData
2023-09-14 11:05:05.674 1243-2595 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 83, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 9130, RangingStatus = 0, NLoS = 0, Distance = 143, AoaAzimuth = 74.94531, AoaAzimuthFom = 88, AoaElevation = -20.335938, AoaElevationFom = 84, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -91}], RawNotificationData = [83, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -111, 48, 0, 0, -113, 0, 121, 37, 88, -43, -11, 84, 0, 0, 0, 0, 0, 0, 0, -74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
onRangeDataNotificationReceived : UwbRangingData
2023-09-14 11:05:05.916 1243-2595 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 84, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 9130, RangingStatus = 0, NLoS = 0, Distance = 142, AoaAzimuth = 74.94531, AoaAzimuthFom = 84, AoaElevation = -18.828125, AoaElevationFom = 84, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -91}], RawNotificationData = [84, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -111, 48, 0, 0, -114, 0, 121, 37, 84, -106, -10, 84, 0, 0, 0, 0, 0, 0, 0, -74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
onRangeDataNotificationReceived : UwbRangingData
2023-09-14 11:05:06.155 1243-2595 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 85, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 9130, RangingStatus = 0, NLoS = 0, Distance = 141, AoaAzimuth = 74.94531, AoaAzimuthFom = 84, AoaElevation = -16.445312, AoaElevationFom = 88, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -91}], RawNotificationData = [85, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -111, 48, 0, 0, -115, 0, 121, 37, 84, -57, -9, 88, 0, 0, 0, 0, 0, 0, 0, -74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
onRangeDataNotificationReceived : UwbRangingData
2023-09-14 11:05:06.395 1243-2595 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 86, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 9130, RangingStatus = 0, NLoS = 0, Distance = 143, AoaAzimuth = 74.94531, AoaAzimuthFom = 84, AoaElevation = -16.921875, AoaElevationFom = 84, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -91}], RawNotificationData = [86, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -111, 48, 0, 0, -113, 0, 121, 37, 84, -118, -9, 84, 0, 0, 0, 0, 0, 0, 0, -74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
onRangeDataNotificationReceived : UwbRangingData
2023-09-14 11:05:06.635 1243-2595 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 87, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 9130, RangingStatus = 0, NLoS = 0, Distance = 140, AoaAzimuth = 74.94531, AoaAzimuthFom = 84, AoaElevation = -23.492188, AoaElevationFom = 84, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -91}], RawNotificationData = [87, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -111, 48, 0, 0, -116, 0, 121, 37, 84, 65, -12, 84, 0, 0, 0, 0, 0, 0, 0, -74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
onRangeDataNotificationReceived : UwbRangingData
2023-09-14 11:05:06.874 1243-2595 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 88, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 9130, RangingStatus = 0, NLoS = 0, Distance = 143, AoaAzimuth = 74.94531, AoaAzimuthFom = 84, AoaElevation = -17.734375, AoaElevationFom = 84, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -91}], RawNotificationData = [88, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -111, 48, 0, 0, -113, 0, 121, 37, 84, 34, -9, 84, 0, 0, 0, 0, 0, 0, 0, -74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
onRangeDataNotificationReceived : UwbRangingData
2023-09-14 11:05:07.114 1243-2595 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 89, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 9130, RangingStatus = 0, NLoS = 0, Distance = 145, AoaAzimuth = 74.94531, AoaAzimuthFom = 84, AoaElevation = -22.046875, AoaElevationFom = 88, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -91}], RawNotificationData = [89, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -111, 48, 0, 0, -111, 0, 121, 37, 84, -6, -12, 88, 0, 0, 0, 0, 0, 0, 0, -74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
onRangeDataNotificationReceived : UwbRangingData
2023-09-14 11:05:07.354 1243-2595 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 90, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 9130, RangingStatus = 0, NLoS = 0, Distance = 146, AoaAzimuth = 74.94531, AoaAzimuthFom = 84, AoaElevation = -20.0, AoaElevationFom = 84, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -91}], RawNotificationData = [90, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -111, 48, 0, 0, -110, 0, 121, 37, 84, 0, -10, 84, 0, 0, 0, 0, 0, 0, 0, -74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
onRangeDataNotificationReceived : UwbRangingData
2023-09-14 11:05:07.595 1243-2595 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 91, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 9130, RangingStatus = 0, NLoS = 0, Distance = 142, AoaAzimuth = 74.94531, AoaAzimuthFom = 84, AoaElevation = -17.140625, AoaElevationFom = 84, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -91}], RawNotificationData = [91, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -111, 48, 0, 0, -114, 0, 121, 37, 84, 110, -9, 84, 0, 0, 0, 0, 0, 0, 0, -74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
onRangeDataNotificationReceived : UwbRangingData
2023-09-14 11:05:07.835 1243-2595 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 92, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 9130, RangingStatus = 0, NLoS = 0, Distance = 142, AoaAzimuth = 74.94531, AoaAzimuthFom = 80, AoaElevation = -17.679688, AoaElevationFom = 84, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -91}], RawNotificationData = [92, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -111, 48, 0, 0, -114, 0, 121, 37, 80, 41, -9, 84, 0, 0, 0, 0, 0, 0, 0, -74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
onRangeDataNotificationReceived : UwbRangingData
2023-09-14 11:05:08.076 1243-2595 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 93, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 9130, RangingStatus = 0, NLoS = 0, Distance = 141, AoaAzimuth = 74.94531, AoaAzimuthFom = 84, AoaElevation = -14.90625, AoaElevationFom = 84, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -91}], RawNotificationData = [93, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -111, 48, 0, 0, -115, 0, 121, 37, 84, -116, -8, 84, 0, 0, 0, 0, 0, 0, 0, -74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
onRangeDataNotificationReceived : UwbRangingData
2023-09-14 11:05:08.314 1243-2595 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 94, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 9130, RangingStatus = 0, NLoS = 0, Distance = 144, AoaAzimuth = 74.94531, AoaAzimuthFom = 84, AoaElevation = -26.101562, AoaElevationFom = 84, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -91}], RawNotificationData = [94, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -111, 48, 0, 0, -112, 0, 121, 37, 84, -13, -14, 84, 0, 0, 0, 0, 0, 0, 0, -74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
onRangeDataNotificationReceived : UwbRangingData
2023-09-14 11:05:08.555 1243-2595 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 95, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 9130, RangingStatus = 0, NLoS = 0, Distance = 141, AoaAzimuth = 74.94531, AoaAzimuthFom = 84, AoaElevation = -21.0625, AoaElevationFom = 84, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -91}], RawNotificationData = [95, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -111, 48, 0, 0, -115, 0, 121, 37, 84, 120, -11, 84, 0, 0, 0, 0, 0, 0, 0, -74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
onRangeDataNotificationReceived : UwbRangingData
2023-09-14 11:05:08.795 1243-2595 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 96, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 9130, RangingStatus = 0, NLoS = 0, Distance = 142, AoaAzimuth = 74.94531, AoaAzimuthFom = 80, AoaElevation = -26.601562, AoaElevationFom = 88, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -91}], RawNotificationData = [96, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -111, 48, 0, 0, -114, 0, 121, 37, 80, -77, -14, 88, 0, 0, 0, 0, 0, 0, 0, -74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
onRangeDataNotificationReceived : UwbRangingData
2023-09-14 11:05:09.034 1243-2595 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 97, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 9130, RangingStatus = 0, NLoS = 0, Distance = 144, AoaAzimuth = 74.94531, AoaAzimuthFom = 84, AoaElevation = -40.0, AoaElevationFom = 84, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -88}], RawNotificationData = [97, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -111, 48, 0, 0, -112, 0, 121, 37, 84, 0, -20, 84, 0, 0, 0, 0, 0, 0, 0, -80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
onRangeDataNotificationReceived : UwbRangingData
2023-09-14 11:05:09.275 1243-2595 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 98, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 9130, RangingStatus = 0, NLoS = 0, Distance = 144, AoaAzimuth = 74.94531, AoaAzimuthFom = 84, AoaElevation = -27.554688, AoaElevationFom = 88, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -88}], RawNotificationData = [98, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -111, 48, 0, 0, -112, 0, 121, 37, 84, 57, -14, 88, 0, 0, 0, 0, 0, 0, 0, -80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
onRangeDataNotificationReceived : UwbRangingData
2023-09-14 11:05:09.514 1243-2595 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 99, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 9130, RangingStatus = 0, NLoS = 0, Distance = 142, AoaAzimuth = 74.94531, AoaAzimuthFom = 84, AoaElevation = -23.695312, AoaElevationFom = 88, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -88}], RawNotificationData = [99, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -111, 48, 0, 0, -114, 0, 121, 37, 84, 39, -12, 88, 0, 0, 0, 0, 0, 0, 0, -80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
onRangeDataNotificationReceived : UwbRangingData
2023-09-14 11:05:09.755 1243-2595 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 100, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 9130, RangingStatus = 0, NLoS = 0, Distance = 144, AoaAzimuth = 74.94531, AoaAzimuthFom = 84, AoaElevation = -20.28125, AoaElevationFom = 88, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -88}], RawNotificationData = [100, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -111, 48, 0, 0, -112, 0, 121, 37, 84, -36, -11, 88, 0, 0, 0, 0, 0, 0, 0, -80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
onRangeDataNotificationReceived : UwbRangingData
2023-09-14 11:05:09.994 1243-2595 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 101, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 9130, RangingStatus = 0, NLoS = 0, Distance = 147, AoaAzimuth = 74.94531, AoaAzimuthFom = 84, AoaElevation = -13.5390625, AoaElevationFom = 88, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -88}], RawNotificationData = [101, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -111, 48, 0, 0, -109, 0, 121, 37, 84, 59, -7, 88, 0, 0, 0, 0, 0, 0, 0, -80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
onRangeDataNotificationReceived : UwbRangingData
2023-09-14 11:05:10.235 1243-2595 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 102, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 9130, RangingStatus = 0, NLoS = 0, Distance = 145, AoaAzimuth = 74.94531, AoaAzimuthFom = 84, AoaElevation = -22.101562, AoaElevationFom = 84, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -88}], RawNotificationData = [102, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -111, 48, 0, 0, -111, 0, 121, 37, 84, -13, -12, 84, 0, 0, 0, 0, 0, 0, 0, -80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
onRangeDataNotificationReceived : UwbRangingData
2023-09-14 11:05:10.474 1243-2595 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 103, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 9130, RangingStatus = 0, NLoS = 0, Distance = 150, AoaAzimuth = 71.8125, AoaAzimuthFom = 84, AoaElevation = -20.226562, AoaElevationFom = 88, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -88}], RawNotificationData = [103, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -111, 48, 0, 0, -106, 0, -24, 35, 84, -29, -11, 88, 0, 0, 0, 0, 0, 0, 0, -80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
onRangeDataNotificationReceived : UwbRangingData
2023-09-14 11:05:10.715 1243-2595 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 104, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 9130, RangingStatus = 0, NLoS = 0, Distance = 147, AoaAzimuth = 74.94531, AoaAzimuthFom = 84, AoaElevation = -21.59375, AoaElevationFom = 88, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -88}], RawNotificationData = [104, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -111, 48, 0, 0, -109, 0, 121, 37, 84, 52, -11, 88, 0, 0, 0, 0, 0, 0, 0, -80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
onRangeDataNotificationReceived : UwbRangingData
2023-09-14 11:05:10.954 1243-2595 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 105, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 9130, RangingStatus = 0, NLoS = 0, Distance = 145, AoaAzimuth = 74.94531, AoaAzimuthFom = 84, AoaElevation = -20.75, AoaElevationFom = 88, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -88}], RawNotificationData = [105, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -111, 48, 0, 0, -111, 0, 121, 37, 84, -96, -11, 88, 0, 0, 0, 0, 0, 0, 0, -80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
onRangeDataNotificationReceived : UwbRangingData
2023-09-14 11:05:11.197 1243-2595 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 106, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 9130, RangingStatus = 0, NLoS = 0, Distance = 150, AoaAzimuth = 74.94531, AoaAzimuthFom = 84, AoaElevation = -15.4375, AoaElevationFom = 88, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -88}], RawNotificationData = [106, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -111, 48, 0, 0, -106, 0, 121, 37, 84, 72, -8, 88, 0, 0, 0, 0, 0, 0, 0, -80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
onRangeDataNotificationReceived : UwbRangingData
2023-09-14 11:05:11.435 1243-2595 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 107, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 9130, RangingStatus = 0, NLoS = 0, Distance = 150, AoaAzimuth = 73.35156, AoaAzimuthFom = 84, AoaElevation = -22.710938, AoaElevationFom = 88, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -88}], RawNotificationData = [107, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -111, 48, 0, 0, -106, 0, -83, 36, 84, -91, -12, 88, 0, 0, 0, 0, 0, 0, 0, -80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
onRangeDataNotificationReceived : UwbRangingData
2023-09-14 11:05:11.674 1243-2595 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 108, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 9130, RangingStatus = 0, NLoS = 0, Distance = 145, AoaAzimuth = 74.94531, AoaAzimuthFom = 84, AoaElevation = -24.0, AoaElevationFom = 88, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -88}], RawNotificationData = [108, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -111, 48, 0, 0, -111, 0, 121, 37, 84, 0, -12, 88, 0, 0, 0, 0, 0, 0, 0, -80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
onRangeDataNotificationReceived : UwbRangingData
2023-09-14 11:05:11.914 1243-2595 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 109, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 9130, RangingStatus = 0, NLoS = 0, Distance = 151, AoaAzimuth = 70.15625, AoaAzimuthFom = 84, AoaElevation = -23.1875, AoaElevationFom = 88, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -88}], RawNotificationData = [109, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -111, 48, 0, 0, -105, 0, 20, 35, 84, 104, -12, 88, 0, 0, 0, 0, 0, 0, 0, -80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
onRangeDataNotificationReceived : UwbRangingData
2023-09-14 11:05:12.155 1243-2595 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 110, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 9130, RangingStatus = 0, NLoS = 0, Distance = 147, AoaAzimuth = 74.94531, AoaAzimuthFom = 88, AoaElevation = -27.046875, AoaElevationFom = 88, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -88}], RawNotificationData = [110, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -111, 48, 0, 0, -109, 0, 121, 37, 88, 122, -14, 88, 0, 0, 0, 0, 0, 0, 0, -80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
onRangeDataNotificationReceived : UwbRangingData
2023-09-14 11:05:12.394 1243-2595 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 111, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 9130, RangingStatus = 0, NLoS = 0, Distance = 150, AoaAzimuth = 74.94531, AoaAzimuthFom = 88, AoaElevation = -26.429688, AoaElevationFom = 88, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -88}], RawNotificationData = [111, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -111, 48, 0, 0, -106, 0, 121, 37, 88, -55, -14, 88, 0, 0, 0, 0, 0, 0, 0, -80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
onRangeDataNotificationReceived : UwbRangingData
2023-09-14 11:05:12.634 1243-2595 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 112, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 9130, RangingStatus = 0, NLoS = 0, Distance = 151, AoaAzimuth = 74.94531, AoaAzimuthFom = 88, AoaElevation = -23.132812, AoaElevationFom = 88, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -88}], RawNotificationData = [112, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -111, 48, 0, 0, -105, 0, 121, 37, 88, 111, -12, 88, 0, 0, 0, 0, 0, 0, 0, -80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
onRangeDataNotificationReceived : UwbRangingData
2023-09-14 11:05:12.874 1243-2595 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 113, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 9130, RangingStatus = 0, NLoS = 0, Distance = 147, AoaAzimuth = 74.94531, AoaAzimuthFom = 84, AoaElevation = -23.75, AoaElevationFom = 88, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -88}], RawNotificationData = [113, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -111, 48, 0, 0, -109, 0, 121, 37, 84, 32, -12, 88, 0, 0, 0, 0, 0, 0, 0, -80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
onRangeDataNotificationReceived : UwbRangingData
2023-09-14 11:05:13.114 1243-2595 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 114, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 9130, RangingStatus = 0, NLoS = 0, Distance = 148, AoaAzimuth = 73.296875, AoaAzimuthFom = 84, AoaElevation = -22.882812, AoaElevationFom = 88, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -88}], RawNotificationData = [114, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -111, 48, 0, 0, -108, 0, -90, 36, 84, -113, -12, 88, 0, 0, 0, 0, 0, 0, 0, -80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
onRangeDataNotificationReceived : UwbRangingData
2023-09-14 11:05:13.354 1243-2595 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 115, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 9130, RangingStatus = 0, NLoS = 0, Distance = 148, AoaAzimuth = 70.609375, AoaAzimuthFom = 84, AoaElevation = -21.179688, AoaElevationFom = 88, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -88}], RawNotificationData = [115, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -111, 48, 0, 0, -108, 0, 78, 35, 84, 105, -11, 88, 0, 0, 0, 0, 0, 0, 0, -80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
onRangeDataNotificationReceived : UwbRangingData
2023-09-14 11:05:13.594 1243-2595 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 116, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 9130, RangingStatus = 0, NLoS = 0, Distance = 150, AoaAzimuth = 74.94531, AoaAzimuthFom = 84, AoaElevation = -23.554688, AoaElevationFom = 88, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -88}], RawNotificationData = [116, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -111, 48, 0, 0, -106, 0, 121, 37, 84, 57, -12, 88, 0, 0, 0, 0, 0, 0, 0, -80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
onRangeDataNotificationReceived : UwbRangingData
2023-09-14 11:05:13.835 1243-2595 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 117, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 9130, RangingStatus = 0, NLoS = 0, Distance = 154, AoaAzimuth = 67.08594, AoaAzimuthFom = 84, AoaElevation = -28.28125, AoaElevationFom = 88, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -88}], RawNotificationData = [117, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -111, 48, 0, 0, -102, 0, -117, 33, 84, -36, -15, 88, 0, 0, 0, 0, 0, 0, 0, -80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
onRangeDataNotificationReceived : UwbRangingData
2023-09-14 11:05:14.074 1243-2595 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 118, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 9130, RangingStatus = 0, NLoS = 0, Distance = 149, AoaAzimuth = 74.94531, AoaAzimuthFom = 84, AoaElevation = -23.1875, AoaElevationFom = 88, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -88}], RawNotificationData = [118, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -111, 48, 0, 0, -107, 0, 121, 37, 84, 104, -12, 88, 0, 0, 0, 0, 0, 0, 0, -80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
onRangeDataNotificationReceived : UwbRangingData
2023-09-14 11:05:14.316 1243-2595 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 119, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 9130, RangingStatus = 0, NLoS = 0, Distance = 148, AoaAzimuth = 70.21094, AoaAzimuthFom = 84, AoaElevation = -22.90625, AoaElevationFom = 88, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -88}], RawNotificationData = [119, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -111, 48, 0, 0, -108, 0, 27, 35, 84, -116, -12, 88, 0, 0, 0, 0, 0, 0, 0, -80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
onRangeDataNotificationReceived : UwbRangingData
2023-09-14 11:05:14.554 1243-2595 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 120, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 9130, RangingStatus = 0, NLoS = 0, Distance = 164, AoaAzimuth = 28.890625, AoaAzimuthFom = 84, AoaElevation = 34.015625, AoaElevationFom = 84, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -91}], RawNotificationData = [120, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -111, 48, 0, 0, -92, 0, 114, 14, 84, 2, 17, 84, 0, 0, 0, 0, 0, 0, 0, -74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
onRangeDataNotificationReceived : UwbRangingData
2023-09-14 11:05:14.794 1243-2595 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 121, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 9130, RangingStatus = 0, NLoS = 0, Distance = 134, AoaAzimuth = 74.94531, AoaAzimuthFom = 84, AoaElevation = -18.375, AoaElevationFom = 84, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -91}], RawNotificationData = [121, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -111, 48, 0, 0, -122, 0, 121, 37, 84, -48, -10, 84, 0, 0, 0, 0, 0, 0, 0, -74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
onRangeDataNotificationReceived : UwbRangingData
2023-09-14 11:05:15.034 1243-2595 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 122, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 9130, RangingStatus = 0, NLoS = 0, Distance = 152, AoaAzimuth = -30.546875, AoaAzimuthFom = 84, AoaElevation = -3.6953125, AoaElevationFom = 92, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -91}], RawNotificationData = [122, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -111, 48, 0, 0, -104, 0, -70, -16, 84, 39, -2, 92, 0, 0, 0, 0, 0, 0, 0, -74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
onRangeDataNotificationReceived : UwbRangingData
2023-09-14 11:05:15.275 1243-2595 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 123, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 9130, RangingStatus = 0, NLoS = 0, Distance = 154, AoaAzimuth = 16.109375, AoaAzimuthFom = 84, AoaElevation = -15.2421875, AoaElevationFom = 88, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -91}], RawNotificationData = [123, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -111, 48, 0, 0, -102, 0, 14, 8, 84, 97, -8, 88, 0, 0, 0, 0, 0, 0, 0, -74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
onRangeDataNotificationReceived : UwbRangingData
2023-09-14 11:05:15.515 1243-2595 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 124, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 9130, RangingStatus = 0, NLoS = 0, Distance = 161, AoaAzimuth = 25.960938, AoaAzimuthFom = 80, AoaElevation = -24.726562, AoaElevationFom = 88, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -91}], RawNotificationData = [124, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -111, 48, 0, 0, -95, 0, -5, 12, 80, -93, -13, 88, 0, 0, 0, 0, 0, 0, 0, -74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
onRangeDataNotificationReceived : UwbRangingData
2023-09-14 11:05:15.755 1243-2595 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 125, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 9130, RangingStatus = 0, NLoS = 0, Distance = 146, AoaAzimuth = -74.94531, AoaAzimuthFom = 80, AoaElevation = -54.945312, AoaElevationFom = 88, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -91}], RawNotificationData = [125, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -111, 48, 0, 0, -110, 0, -121, -38, 80, -121, -28, 88, 0, 0, 0, 0, 0, 0, 0, -74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
onRangeDataNotificationReceived : UwbRangingData
2023-09-14 11:05:15.995 1243-2595 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 126, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 9130, RangingStatus = 0, NLoS = 0, Distance = 145, AoaAzimuth = 74.94531, AoaAzimuthFom = 84, AoaElevation = -10.1484375, AoaElevationFom = 88, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -91}], RawNotificationData = [126, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -111, 48, 0, 0, -111, 0, 121, 37, 84, -19, -6, 88, 0, 0, 0, 0, 0, 0, 0, -74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
onRangeDataNotificationReceived : UwbRangingData
2023-09-14 11:05:16.236 1243-2595 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 127, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 9130, RangingStatus = 0, NLoS = 0, Distance = 150, AoaAzimuth = 65.88281, AoaAzimuthFom = 80, AoaElevation = -18.4375, AoaElevationFom = 88, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -91}], RawNotificationData = [127, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -111, 48, 0, 0, -106, 0, -15, 32, 80, -56, -10, 88, 0, 0, 0, 0, 0, 0, 0, -74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
onRangeDataNotificationReceived : UwbRangingData
2023-09-14 11:05:16.475 1243-2595 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 128, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 9130, RangingStatus = 0, NLoS = 0, Distance = 146, AoaAzimuth = 66.75, AoaAzimuthFom = 84, AoaElevation = -0.140625, AoaElevationFom = 88, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -91}], RawNotificationData = [-128, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -111, 48, 0, 0, -110, 0, 96, 33, 84, -18, -1, 88, 0, 0, 0, 0, 0, 0, 0, -74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
onRangeDataNotificationReceived : UwbRangingData
2023-09-14 11:05:16.715 1243-2595 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 129, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 9130, RangingStatus = 0, NLoS = 0, Distance = 148, AoaAzimuth = 74.94531, AoaAzimuthFom = 84, AoaElevation = -1.7578125, AoaElevationFom = 84, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -91}], RawNotificationData = [-127, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -111, 48, 0, 0, -108, 0, 121, 37, 84, 31, -1, 84, 0, 0, 0, 0, 0, 0, 0, -74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
onRangeDataNotificationReceived : UwbRangingData
2023-09-14 11:05:16.955 1243-2595 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 130, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 9130, RangingStatus = 0, NLoS = 0, Distance = 146, AoaAzimuth = 74.94531, AoaAzimuthFom = 84, AoaElevation = -3.578125, AoaElevationFom = 88, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -91}], RawNotificationData = [-126, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -111, 48, 0, 0, -110, 0, 121, 37, 84, 54, -2, 88, 0, 0, 0, 0, 0, 0, 0, -74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
onRangeDataNotificationReceived : UwbRangingData
2023-09-14 11:05:17.195 1243-2595 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 131, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 9130, RangingStatus = 0, NLoS = 0, Distance = 137, AoaAzimuth = -0.390625, AoaAzimuthFom = 76, AoaElevation = -54.945312, AoaElevationFom = 76, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -97}], RawNotificationData = [-125, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -111, 48, 0, 0, -119, 0, -50, -1, 76, -121, -28, 76, 0, 0, 0, 0, 0, 0, 0, -62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
onRangeDataNotificationReceived : UwbRangingData
2023-09-14 11:05:17.435 1243-2595 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 132, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 9130, RangingStatus = 0, NLoS = 0, Distance = 141, AoaAzimuth = 66.38281, AoaAzimuthFom = 76, AoaElevation = -27.046875, AoaElevationFom = 80, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -94}], RawNotificationData = [-124, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -111, 48, 0, 0, -115, 0, 49, 33, 76, 122, -14, 80, 0, 0, 0, 0, 0, 0, 0, -68, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
onRangeDataNotificationReceived : UwbRangingData
2023-09-14 11:05:17.674 1243-2595 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 133, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 9130, RangingStatus = 0, NLoS = 0, Distance = 149, AoaAzimuth = 15.6640625, AoaAzimuthFom = 65, AoaElevation = -42.882812, AoaElevationFom = 84, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -97}], RawNotificationData = [-123, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -111, 48, 0, 0, -107, 0, -43, 7, 65, -113, -22, 84, 0, 0, 0, 0, 0, 0, 0, -62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
onRangeDataNotificationReceived : UwbRangingData
2023-09-14 11:05:17.914 1243-2595 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 134, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 9130, RangingStatus = 0, NLoS = 0, Distance = 144, AoaAzimuth = -27.1875, AoaAzimuthFom = 61, AoaElevation = -54.945312, AoaElevationFom = 80, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -97}], RawNotificationData = [-122, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -111, 48, 0, 0, -112, 0, 104, -14, 61, -121, -28, 80, 0, 0, 0, 0, 0, 0, 0, -62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
onRangeDataNotificationReceived : UwbRangingData
2023-09-14 11:05:18.155 1243-2595 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 135, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 9130, RangingStatus = 0, NLoS = 0, Distance = 148, AoaAzimuth = 5.453125, AoaAzimuthFom = 53, AoaElevation = -65.71094, AoaElevationFom = 80, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -97}], RawNotificationData = [-121, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -111, 48, 0, 0, -108, 0, -70, 2, 53, 37, -33, 80, 0, 0, 0, 0, 0, 0, 0, -62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
na...@gmail.com <na...@gmail.com> #31
Do you know of issues with UWB on the Fold?
na...@gmail.com <na...@gmail.com> #32
I guess you made more than just a Chinese fix in Jetpack UWB Alpha 7, unless it was via Play updates, but no real release notes for them, so it's hard to tell.
As it seems to be a Fold issue with the beacons, I wasn't planning to try Fold to 7 Pro, unless you really want that tested.
rp...@google.com <rp...@google.com> #33
I tried the Fold folded and unfolded just now and it doesn't seem to make a difference to the nulls, but at least range keeps coming through.
Can you clarify what you mean by nulls
if you are getting the distance info? Are you looking at AOA info?
na...@gmail.com <na...@gmail.com> #34
2023-09-19 09:24:03.705 1541-3275 uwb pid-1541 D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-09-19 09:24:03.706 1541-3275 uwb pid-1541 D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-09-19 09:24:03.706 1541-3275 NativeUwbManager pid-1541 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 54, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 36, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x01000000, RSSI = 0}], RawNotificationData = [54, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-19 09:24:03.708 2502-5021 Uwb.Rangin...n@8bb83c5] pid-2502 V onRangingResult - sessionHandle: SessionHandle [id=1, package-name: com.google.android.gms, uid: 10137, pid: 2502]
2023-09-19 09:24:03.708 1541-3275 UwbSessionNotiManager pid-1541 I IUwbRangingCallbacks - onRangingResult
2023-09-19 09:24:03.710 2502-23629 NearbyUWB pid-2502 I (REDACTED) Ranging Result: %s %s
2023-09-19 09:24:03.715 23721-23849 LoggingKt
2023-09-19 09:24:03.716 23721-23849 MainActivity
rp...@google.com <rp...@google.com> #35
Ack, I do see the ranging errors in Pixel fold. Just to confirm you are running Android 13 build on this device. I'll have to check with our internal hardware teams to check if there are any known issues with Pixel fold that is expected to be fixed in Android 14.
2023-09-14 11:09:07.626 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 297, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 0, NLoS = 0, Distance = 81, AoaAzimuth = 74.94531, AoaAzimuthFom = 26, AoaElevation = 23.023438, AoaElevationFom = 18, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -103}], RawNotificationData = [41, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 0, 0, 81, 0, 121, 37, 26, -125, 11, 18, 0, 0, 0, 0, 0, 0, 0, -50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:07.866 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 298, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 0, NLoS = 0, Distance = 84, AoaAzimuth = 74.94531, AoaAzimuthFom = 18, AoaElevation = 24.195312, AoaElevationFom = 22, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -106}], RawNotificationData = [42, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 0, 0, 84, 0, 121, 37, 18, 25, 12, 22, 0, 0, 0, 0, 0, 0, 0, -44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:08.106 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 299, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 0, NLoS = 0, Distance = 79, AoaAzimuth = 67.671875, AoaAzimuthFom = 34, AoaElevation = 23.773438, AoaElevationFom = 15, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -106}], RawNotificationData = [43, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 0, 0, 79, 0, -42, 33, 34, -29, 11, 15, 0, 0, 0, 0, 0, 0, 0, -44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:08.345 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 300, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 0, NLoS = 0, Distance = 88, AoaAzimuth = 59.328125, AoaAzimuthFom = 18, AoaElevation = 21.03125, AoaElevationFom = 22, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -106}], RawNotificationData = [44, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 0, 0, 88, 0, -86, 29, 18, -124, 10, 22, 0, 0, 0, 0, 0, 0, 0, -44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:08.586 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 301, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 0, NLoS = 0, Distance = 80, AoaAzimuth = 70.328125, AoaAzimuthFom = 11, AoaElevation = 22.570312, AoaElevationFom = 15, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -106}], RawNotificationData = [45, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 0, 0, 80, 0, 42, 35, 11, 73, 11, 15, 0, 0, 0, 0, 0, 0, 0, -44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:08.826 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 302, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 0, NLoS = 0, Distance = 84, AoaAzimuth = 74.94531, AoaAzimuthFom = 11, AoaElevation = 16.164062, AoaElevationFom = 18, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -106}], RawNotificationData = [46, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 0, 0, 84, 0, 121, 37, 11, 21, 8, 18, 0, 0, 0, 0, 0, 0, 0, -44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:09.066 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 303, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 0, NLoS = 0, Distance = 89, AoaAzimuth = 41.679688, AoaAzimuthFom = 22, AoaElevation = 18.015625, AoaElevationFom = 7, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -106}], RawNotificationData = [47, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 0, 0, 89, 0, -41, 20, 22, 2, 9, 7, 0, 0, 0, 0, 0, 0, 0, -44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:09.306 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 304, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 0, NLoS = 0, Distance = 92, AoaAzimuth = 74.94531, AoaAzimuthFom = 26, AoaElevation = 29.90625, AoaElevationFom = 18, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -106}], RawNotificationData = [48, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 0, 0, 92, 0, 121, 37, 26, -12, 14, 18, 0, 0, 0, 0, 0, 0, 0, -44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:09.545 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 305, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 0, NLoS = 0, Distance = 88, AoaAzimuth = 30.296875, AoaAzimuthFom = 22, AoaElevation = 23.640625, AoaElevationFom = 22, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -103}], RawNotificationData = [49, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 0, 0, 88, 0, 38, 15, 22, -46, 11, 22, 0, 0, 0, 0, 0, 0, 0, -50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:09.792 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 306, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 0, NLoS = 0, Distance = 80, AoaAzimuth = 74.83594, AoaAzimuthFom = 18, AoaElevation = 4.8671875, AoaElevationFom = 42, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -103}], RawNotificationData = [50, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 0, 0, 80, 0, 107, 37, 18, 111, 2, 42, 0, 0, 0, 0, 0, 0, 0, -50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:10.026 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 307, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 0, NLoS = 0, Distance = 74, AoaAzimuth = 74.94531, AoaAzimuthFom = 15, AoaElevation = 36.164062, AoaElevationFom = 15, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -106}], RawNotificationData = [51, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 0, 0, 74, 0, 121, 37, 15, 21, 18, 15, 0, 0, 0, 0, 0, 0, 0, -44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:10.265 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 308, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 0, NLoS = 0, Distance = 72, AoaAzimuth = 74.94531, AoaAzimuthFom = 3, AoaElevation = 3.6015625, AoaElevationFom = 30, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -103}], RawNotificationData = [52, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 0, 0, 72, 0, 121, 37, 3, -51, 1, 30, 0, 0, 0, 0, 0, 0, 0, -50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:10.499 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 309, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 36, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x01000000, RSSI = 0}], RawNotificationData = [53, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:10.746 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 310, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 0, NLoS = 0, Distance = 74, AoaAzimuth = 74.94531, AoaAzimuthFom = 15, AoaElevation = 26.578125, AoaElevationFom = 42, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -103}], RawNotificationData = [54, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 0, 0, 74, 0, 121, 37, 15, 74, 13, 42, 0, 0, 0, 0, 0, 0, 0, -50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:10.986 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 311, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 0, NLoS = 0, Distance = 92, AoaAzimuth = -24.921875, AoaAzimuthFom = 3, AoaElevation = 19.773438, AoaElevationFom = 30, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -106}], RawNotificationData = [55, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 0, 0, 92, 0, -118, -13, 3, -29, 9, 30, 0, 0, 0, 0, 0, 0, 0, -44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:11.225 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 312, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 0, NLoS = 0, Distance = 70, AoaAzimuth = 74.94531, AoaAzimuthFom = 15, AoaElevation = 46.070312, AoaElevationFom = 18, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -106}], RawNotificationData = [56, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 0, 0, 70, 0, 121, 37, 15, 9, 23, 18, 0, 0, 0, 0, 0, 0, 0, -44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:11.458 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 313, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 36, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x01000000, RSSI = 0}], RawNotificationData = [57, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:11.698 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 314, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 36, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x01000000, RSSI = 0}], RawNotificationData = [58, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:11.938 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 315, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 36, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x01000000, RSSI = 0}], RawNotificationData = [59, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:12.179 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 316, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 36, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x01000000, RSSI = 0}], RawNotificationData = [60, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:12.418 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 317, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 36, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x01000000, RSSI = 0}], RawNotificationData = [61, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:12.658 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 318, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 36, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x01000000, RSSI = 0}], RawNotificationData = [62, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:12.898 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 319, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 36, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x01000000, RSSI = 0}], RawNotificationData = [63, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:13.138 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 320, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 36, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x01000000, RSSI = 0}], RawNotificationData = [64, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:13.379 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 321, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 36, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x01000000, RSSI = 0}], RawNotificationData = [65, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:13.626 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 322, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 0, NLoS = 0, Distance = 68, AoaAzimuth = 74.94531, AoaAzimuthFom = 7, AoaElevation = 18.992188, AoaElevationFom = 18, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -106}], RawNotificationData = [66, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 0, 0, 68, 0, 121, 37, 7, 127, 9, 18, 0, 0, 0, 0, 0, 0, 0, -44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:13.865 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 323, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 0, NLoS = 0, Distance = 73, AoaAzimuth = 74.94531, AoaAzimuthFom = 15, AoaElevation = 30.90625, AoaElevationFom = 34, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -106}], RawNotificationData = [67, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 0, 0, 73, 0, 121, 37, 15, 116, 15, 34, 0, 0, 0, 0, 0, 0, 0, -44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:14.106 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 324, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 0, NLoS = 0, Distance = 70, AoaAzimuth = 71.30469, AoaAzimuthFom = 22, AoaElevation = 21.484375, AoaElevationFom = 22, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -106}], RawNotificationData = [68, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 0, 0, 70, 0, -89, 35, 22, -66, 10, 22, 0, 0, 0, 0, 0, 0, 0, -44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:14.346 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 325, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 0, NLoS = 0, Distance = 75, AoaAzimuth = 74.94531, AoaAzimuthFom = 15, AoaElevation = 20.640625, AoaElevationFom = 38, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -106}], RawNotificationData = [69, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 0, 0, 75, 0, 121, 37, 15, 82, 10, 38, 0, 0, 0, 0, 0, 0, 0, -44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:14.586 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 326, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 0, NLoS = 0, Distance = 71, AoaAzimuth = 74.94531, AoaAzimuthFom = 26, AoaElevation = 21.257812, AoaElevationFom = 22, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -106}], RawNotificationData = [70, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 0, 0, 71, 0, 121, 37, 26, -95, 10, 22, 0, 0, 0, 0, 0, 0, 0, -44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:14.826 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 327, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 0, NLoS = 0, Distance = 61, AoaAzimuth = 74.94531, AoaAzimuthFom = 30, AoaElevation = 27.890625, AoaElevationFom = 18, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -103}], RawNotificationData = [71, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 0, 0, 61, 0, 121, 37, 30, -14, 13, 18, 0, 0, 0, 0, 0, 0, 0, -50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:15.059 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 328, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 36, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x01000000, RSSI = 0}], RawNotificationData = [72, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:15.298 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 329, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 36, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x01000000, RSSI = 0}], RawNotificationData = [73, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:15.546 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 330, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 0, NLoS = 0, Distance = 70, AoaAzimuth = 74.94531, AoaAzimuthFom = 3, AoaElevation = 23.554688, AoaElevationFom = 45, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -103}], RawNotificationData = [74, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 0, 0, 70, 0, 121, 37, 3, -57, 11, 45, 0, 0, 0, 0, 0, 0, 0, -50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:15.786 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 331, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 0, NLoS = 0, Distance = 70, AoaAzimuth = 74.94531, AoaAzimuthFom = 7, AoaElevation = 9.6171875, AoaElevationFom = 30, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -106}], RawNotificationData = [75, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 0, 0, 70, 0, 121, 37, 7, -49, 4, 30, 0, 0, 0, 0, 0, 0, 0, -44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:16.018 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 332, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 36, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x01000000, RSSI = 0}], RawNotificationData = [76, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:16.266 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 333, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 0, NLoS = 0, Distance = 77, AoaAzimuth = 74.94531, AoaAzimuthFom = 22, AoaElevation = -0.1640625, AoaElevationFom = 15, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -106}], RawNotificationData = [77, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 0, 0, 77, 0, 121, 37, 22, -21, -1, 15, 0, 0, 0, 0, 0, 0, 0, -44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:16.506 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 334, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 0, NLoS = 0, Distance = 76, AoaAzimuth = 74.94531, AoaAzimuthFom = 3, AoaElevation = 2.90625, AoaElevationFom = 34, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -103}], RawNotificationData = [78, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 0, 0, 76, 0, 121, 37, 3, 116, 1, 34, 0, 0, 0, 0, 0, 0, 0, -50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:16.746 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 335, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 0, NLoS = 0, Distance = 82, AoaAzimuth = 50.101562, AoaAzimuthFom = 18, AoaElevation = 1.1953125, AoaElevationFom = 34, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -103}], RawNotificationData = [79, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 0, 0, 82, 0, 13, 25, 18, -103, 0, 34, 0, 0, 0, 0, 0, 0, 0, -50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:16.986 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 336, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 0, NLoS = 0, Distance = 80, AoaAzimuth = 74.94531, AoaAzimuthFom = 38, AoaElevation = 20.0, AoaElevationFom = 42, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -103}], RawNotificationData = [80, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 0, 0, 80, 0, 121, 37, 38, 0, 10, 42, 0, 0, 0, 0, 0, 0, 0, -50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:17.225 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 337, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 0, NLoS = 0, Distance = 78, AoaAzimuth = 74.94531, AoaAzimuthFom = 34, AoaElevation = 33.203125, AoaElevationFom = 38, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -103}], RawNotificationData = [81, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 0, 0, 78, 0, 121, 37, 34, -102, 16, 38, 0, 0, 0, 0, 0, 0, 0, -50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:17.466 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 338, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 0, NLoS = 0, Distance = 80, AoaAzimuth = 65.39844, AoaAzimuthFom = 22, AoaElevation = 18.070312, AoaElevationFom = 26, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -103}], RawNotificationData = [82, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 0, 0, 80, 0, -77, 32, 22, 9, 9, 26, 0, 0, 0, 0, 0, 0, 0, -50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:17.706 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 339, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 0, NLoS = 0, Distance = 84, AoaAzimuth = 57.296875, AoaAzimuthFom = 18, AoaElevation = 13.6796875, AoaElevationFom = 22, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -103}], RawNotificationData = [83, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 0, 0, 84, 0, -90, 28, 18, -41, 6, 22, 0, 0, 0, 0, 0, 0, 0, -50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:17.946 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 340, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 0, NLoS = 0, Distance = 89, AoaAzimuth = 43.445312, AoaAzimuthFom = 30, AoaElevation = 16.0, AoaElevationFom = 26, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -106}], RawNotificationData = [84, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 0, 0, 89, 0, -71, 21, 30, 0, 8, 26, 0, 0, 0, 0, 0, 0, 0, -44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:18.185 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 341, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 0, NLoS = 0, Distance = 94, AoaAzimuth = 54.890625, AoaAzimuthFom = 22, AoaElevation = 40.390625, AoaElevationFom = 7, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -106}], RawNotificationData = [85, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 0, 0, 94, 0, 114, 27, 22, 50, 20, 7, 0, 0, 0, 0, 0, 0, 0, -44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:18.418 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 342, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 36, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x01000000, RSSI = 0}], RawNotificationData = [86, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:18.659 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 343, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 36, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x01000000, RSSI = 0}], RawNotificationData = [87, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:18.899 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 344, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 36, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x01000000, RSSI = 0}], RawNotificationData = [88, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:19.138 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 345, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 36, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x01000000, RSSI = 0}], RawNotificationData = [89, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:19.379 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 346, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 36, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x01000000, RSSI = 0}], RawNotificationData = [90, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:19.618 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 347, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 36, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x01000000, RSSI = 0}], RawNotificationData = [91, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:19.858 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 348, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 36, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x01000000, RSSI = 0}], RawNotificationData = [92, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:20.103 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 349, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 36, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x03000000, RSSI = 0}], RawNotificationData = [93, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:20.338 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 350, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 36, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x01000000, RSSI = 0}], RawNotificationData = [94, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:20.578 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 351, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 36, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x01000000, RSSI = 0}], RawNotificationData = [95, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:20.818 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 352, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 36, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x01000000, RSSI = 0}], RawNotificationData = [96, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:21.058 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 353, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 36, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x01000000, RSSI = 0}], RawNotificationData = [97, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:21.298 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 354, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 36, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x01000000, RSSI = 0}], RawNotificationData = [98, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:21.542 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 355, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 36, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x03000000, RSSI = 0}], RawNotificationData = [99, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:21.778 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 356, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 36, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x01000000, RSSI = 0}], RawNotificationData = [100, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:22.018 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 357, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 36, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x01000000, RSSI = 0}], RawNotificationData = [101, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:22.259 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 358, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 36, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x01000000, RSSI = 0}], RawNotificationData = [102, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:22.497 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 359, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [103, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:22.737 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 360, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [104, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:22.976 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 361, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [105, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:23.216 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 362, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [106, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:23.483 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 363, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 37, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [107, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:23.724 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 364, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 37, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [108, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:23.963 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 365, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 37, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [109, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:24.203 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 366, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 37, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [110, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:24.444 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 367, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 37, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [111, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:24.688 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 368, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 37, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [112, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:24.923 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 369, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 37, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [113, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:25.390 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 370, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [114, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:25.632 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 371, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [115, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:25.643 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 372, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 37, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [116, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:25.883 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 373, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 37, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [117, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:26.123 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 374, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 37, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [118, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:26.363 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 375, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 37, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [119, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:26.603 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 376, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 37, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [120, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:26.844 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 377, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 34, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [121, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-09-14 11:09:27.194 1255-2617 NativeUwbManager pid-1255 D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 378, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 7369, RangingStatus = 37, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [122, 1, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115, 105, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
na...@gmail.com <na...@gmail.com> #36
rp...@google.com <rp...@google.com> #37
I'll have to check with our internal hardware teams to check if there are any known issues with Pixel fold that is expected to be fixed in Android 14.
Looks like we did have a known issue in Android T builds for Fold devices (there was some misconfiguration in the calibration file). We expect the issue to be resolved in Android 14.
ja...@estimote.com <ja...@estimote.com> #38
Estimote is pleased to inform that we have successfully resolved both the channel change and STS Vendor ID issues. A new firmware has been released for Estimote UWB Beacons, ensuring compatibility with Android 14. For more details, you can read this post :
Please shoot us a note to contact (at) estimote com to get the latest firmware OTA for your beacons.
da...@gmail.com <da...@gmail.com> #39
na...@gmail.com <na...@gmail.com> #40
It does appear that the 6 Pro is suffering from the intermittent Ranging status 33 that we saw on the Pixel Fold running Android 13.
But at least we can work with Android 14 now...
2023-10-11 17:17:37.770 1653-3262 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 326, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 120, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 3091, RangingStatus = 0, NLoS = 0, Distance = 93, AoaAzimuth = 43.859375, AoaAzimuthFom = 92, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -83}], RawNotificationData = [70, 1, 0, 0, 1, 0, 0, 0, 0, 120, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 48, -111, 0, 0, 93, 0, -18, 21, 92, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -90, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-10-11 17:17:37.773 1653-3262 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-10-11 17:17:37.773 3002-3983 Uwb.Rangin...n@78873e4] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=1, package-name: com.google.android.gms, uid: 10104, pid: 3002]
2023-10-11 17:17:37.775 3002-15842 NearbyUWB com.google.android.gms.persistent I (REDACTED) Ranging Result: %s %s
2023-10-11 17:17:37.781 18142-18436 UWBRanger
2023-10-11 17:17:37.784 18142-18435 UWBRanger
2023-10-11 17:17:37.787 18142-18142 MainActivity
2023-10-11 17:17:37.878 1300-1300 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-10-11 17:17:37.879 1653-3262 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-10-11 17:17:37.880 1653-3262 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-10-11 17:17:37.880 1653-3262 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 327, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 120, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 3091, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [71, 1, 0, 0, 1, 0, 0, 0, 0, 120, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 48, -111, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-10-11 17:17:37.883 1653-3262 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-10-11 17:17:37.883 1653-3262 UwbSessionManager system_server V Starting error timer for 10000 ms.
2023-10-11 17:17:37.884 3002-3983 Uwb.Rangin...n@78873e4] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=1, package-name: com.google.android.gms, uid: 10104, pid: 3002]
2023-10-11 17:17:37.886 3002-11080 NearbyUWB com.google.android.gms.persistent I (REDACTED) Ranging Result: %s %s
2023-10-11 17:17:37.893 18142-18436 UWBRanger
2023-10-11 17:17:37.897 18142-18431 UWBRanger
2023-10-11 17:17:37.899 18142-18142 MainActivity
na...@gmail.com <na...@gmail.com> #41
It was fine on the Fold running stock Android 14.
So I updated the 6 Pro to 14 QPR2 and it has fixed the screen off issue.
I still see the non-zero ranging status in between 0, but this time it is RangingStatus 34... as per my usual comment... what do the non-zero RangingStatus codes mean?
3-10-12 16:30:06.542 1855-7042 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-10-12 16:30:06.542 1855-7042 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-10-12 16:30:06.542 1855-7042 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 88, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 6973, RangingStatus = 34, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [88, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 105, 115, 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-10-12 16:30:06.543 1855-7042 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-10-12 16:30:06.543 1855-7042 UwbSessionManager system_server V Starting error timer for 10000 ms.
2023-10-12 16:30:06.545 6038-7046 Uwb.Rangin...n@b3702c8] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=1, package-name: com.google.android.gms, uid: 10104, pid: 6038]
2023-10-12 16:30:06.545 6038-15646 NearbyUWB com.google.android.gms.persistent I (REDACTED) Ranging Result: %s %s
2023-10-12 16:30:06.548 12926-13771 LoggingKt
2023-10-12 16:30:06.549 12926-13771 MainActivity
2023-10-12 16:30:06.551 12926-13685 LoggingKt
2023-10-12 16:30:06.792 1427-1427 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-10-12 16:30:06.792 1855-7042 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-10-12 16:30:06.792 1855-7042 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-10-12 16:30:06.792 1855-7042 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 89, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 6973, RangingStatus = 0, NLoS = 0, Distance = 94, AoaAzimuth = 51.164062, AoaAzimuthFom = 84, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -88}], RawNotificationData = [89, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 105, 115, 0, 0, 94, 0, -107, 25, 84, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-10-12 16:30:06.793 1855-7042 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-10-12 16:30:06.794 6038-8793 Uwb.Rangin...n@b3702c8] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=1, package-name: com.google.android.gms, uid: 10104, pid: 6038]
2023-10-12 16:30:06.794 6038-11227 NearbyUWB com.google.android.gms.persistent I (REDACTED) Ranging Result: %s %s
2023-10-12 16:30:06.796 12926-13685 LoggingKt
2023-10-12 16:30:06.797 12926-13685 MainActivity
I'll check on the 7 Pro which is also stock Android 14, but the Fold was seeing non-zero RangingStatus 33 and 34 in this section:
2023-10-12 16:38:14.051 1549-2973 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 31, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 3091, RangingStatus = 34, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [31, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 48, -111, 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-10-12 16:38:14.053 1549-2973 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-10-12 16:38:14.053 1549-2973 UwbSessionManager system_server V Starting error timer for 10000 ms.
2023-10-12 16:38:14.053 2904-5755 Uwb.Rangin...n@9247df3] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=101, package-name: com.google.android.gms, uid: 10137, pid: 2904]
2023-10-12 16:38:14.055 2904-8364 NearbyUWB com.google.android.gms.persistent I (REDACTED) Ranging Result: %s %s
2023-10-12 16:38:14.058 9761-9917 LoggingKt
2023-10-12 16:38:14.061 9761-9917 MainActivity
2023-10-12 16:38:14.299 1004-1004 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-10-12 16:38:14.300 1549-2973 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-10-12 16:38:14.301 1549-2973 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-10-12 16:38:14.301 1549-2973 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 32, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 3091, RangingStatus = 0, NLoS = 0, Distance = 61, AoaAzimuth = 75.05469, AoaAzimuthFom = 92, AoaElevation = -14.4609375, AoaElevationFom = 84, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -83}], RawNotificationData = [32, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 48, -111, 0, 0, 61, 0, -121, 37, 92, -59, -8, 84, 0, 0, 0, 0, 0, 0, 0, -90, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-10-12 16:38:14.305 1549-2973 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-10-12 16:38:14.306 2904-5755 Uwb.Rangin...n@9247df3] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=101, package-name: com.google.android.gms, uid: 10137, pid: 2904]
2023-10-12 16:38:14.307 2904-6269 NearbyUWB com.google.android.gms.persistent I (REDACTED) Ranging Result: %s %s
2023-10-12 16:38:14.310 9761-9956 LoggingKt
2023-10-12 16:38:14.311 9761-9956 MainActivity
2023-10-12 16:38:14.537 1004-1004 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-10-12 16:38:14.538 1549-2973 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-10-12 16:38:14.538 1549-2973 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-10-12 16:38:14.539 1549-2973 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 33, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 3091, RangingStatus = 34, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x04000000, RSSI = 0}], RawNotificationData = [33, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 48, -111, 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-10-12 16:38:14.541 1549-2973 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-10-12 16:38:14.541 1549-2973 UwbSessionManager system_server V Starting error timer for 10000 ms.
2023-10-12 16:38:14.541 2904-5755 Uwb.Rangin...n@9247df3] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=101, package-name: com.google.android.gms, uid: 10137, pid: 2904]
2023-10-12 16:38:14.542 2904-8364 NearbyUWB com.google.android.gms.persistent I (REDACTED) Ranging Result: %s %s
2023-10-12 16:38:14.550 9761-9953 LoggingKt
2023-10-12 16:38:14.554 9761-9953 MainActivity
2023-10-12 16:38:14.769 1004-1004 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-10-12 16:38:14.774 1549-2973 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-10-12 16:38:14.774 1549-2973 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-10-12 16:38:14.774 1549-2973 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 34, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 3091, RangingStatus = 33, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [34, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 48, -111, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-10-12 16:38:14.777 1549-2973 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-10-12 16:38:14.777 2904-5755 Uwb.Rangin...n@9247df3] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=101, package-name: com.google.android.gms, uid: 10137, pid: 2904]
2023-10-12 16:38:14.779 2904-6269 NearbyUWB com.google.android.gms.persistent I (REDACTED) Ranging Result: %s %s
2023-10-12 16:38:14.780 9761-9956 LoggingKt
2023-10-12 16:38:14.781 9761-9956 MainActivity
2023-10-12 16:38:15.019 1004-1004 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-10-12 16:38:15.020 1549-2973 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-10-12 16:38:15.020 1549-2973 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-10-12 16:38:15.020 1549-2973 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 35, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 3091, RangingStatus = 0, NLoS = 0, Distance = 136, AoaAzimuth = 59.078125, AoaAzimuthFom = 76, AoaElevation = 26.820312, AoaElevationFom = 80, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -91}], RawNotificationData = [35, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 48, -111, 0, 0, -120, 0, -118, 29, 76, 105, 13, 80, 0, 0, 0, 0, 0, 0, 0, -74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-10-12 16:38:15.022 1549-2973 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-10-12 16:38:15.023 2904-5482 Uwb.Rangin...n@9247df3] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=101, package-name: com.google.android.gms, uid: 10137, pid: 2904]
2023-10-12 16:38:15.025 2904-6269 NearbyUWB com.google.android.gms.persistent I (REDACTED) Ranging Result: %s %s
2023-10-12 16:38:15.029 9761-9955 LoggingKt
7 Pro gets RangingStatus 34 and 36 as well as normal 0:
anager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 19, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 3091, RangingStatus = 0, NLoS = 0, Distance = 81, AoaAzimuth = 36.257812, AoaAzimuthFom = 80, AoaElevation = 69.96875, AoaElevationFom = 53, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -100}], RawNotificationData = [19, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 48, -111, 0, 0, 81, 0, 33, 18, 80, -4, 34, 53, 0, 0, 0, 0, 0, 0, 0, -56, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-10-12 16:42:03.771 1559-3322 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-10-12 16:42:03.771 2894-6639 Uwb.Rangin...n@9359822] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=1, package-name: com.google.android.gms, uid: 10158, pid: 2894]
2023-10-12 16:42:03.772 2894-32402 NearbyUWB com.google.android.gms.persistent I (REDACTED) Ranging Result: %s %s
2023-10-12 16:42:03.774 450-889 LoggingKt
2023-10-12 16:42:03.775 450-889 MainActivity
2023-10-12 16:42:03.999 969-969 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-10-12 16:42:04.000 1559-3322 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-10-12 16:42:04.000 1559-3322 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-10-12 16:42:04.001 1559-3322 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 20, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 3091, RangingStatus = 34, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [20, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 48, -111, 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-10-12 16:42:04.002 1559-3322 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-10-12 16:42:04.002 1559-3322 UwbSessionManager system_server V Starting error timer for 10000 ms.
2023-10-12 16:42:04.003 2894-6639 Uwb.Rangin...n@9359822] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=1, package-name: com.google.android.gms, uid: 10158, pid: 2894]
2023-10-12 16:42:04.005 2894-32759 NearbyUWB com.google.android.gms.persistent I (REDACTED) Ranging Result: %s %s
2023-10-12 16:42:04.013 450-593 LoggingKt
2023-10-12 16:42:04.017 450-593 MainActivity
2023-10-12 16:42:04.249 969-969 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-10-12 16:42:04.250 1559-3322 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-10-12 16:42:04.250 1559-3322 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-10-12 16:42:04.250 1559-3322 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 21, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 3091, RangingStatus = 0, NLoS = 0, Distance = 78, AoaAzimuth = 53.765625, AoaAzimuthFom = 65, AoaElevation = 69.96875, AoaElevationFom = 45, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -103}], RawNotificationData = [21, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 48, -111, 0, 0, 78, 0, -30, 26, 65, -4, 34, 45, 0, 0, 0, 0, 0, 0, 0, -50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-10-12 16:42:04.251 1559-3322 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-10-12 16:42:04.251 2894-6639 Uwb.Rangin...n@9359822] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=1, package-name: com.google.android.gms, uid: 10158, pid: 2894]
2023-10-12 16:42:04.252 2894-32402 NearbyUWB com.google.android.gms.persistent I (REDACTED) Ranging Result: %s %s
2023-10-12 16:42:04.253 450-890 LoggingKt
2023-10-12 16:42:04.254 450-890 MainActivity
2023-10-12 16:42:04.489 969-969 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-10-12 16:42:04.490 1559-3322 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-10-12 16:42:04.490 1559-3322 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-10-12 16:42:04.490 1559-3322 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 22, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 3091, RangingStatus = 0, NLoS = 0, Distance = 79, AoaAzimuth = 42.382812, AoaAzimuthFom = 76, AoaElevation = 69.96875, AoaElevationFom = 49, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -94}], RawNotificationData = [22, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 48, -111, 0, 0, 79, 0, 49, 21, 76, -4, 34, 49, 0, 0, 0, 0, 0, 0, 0, -68, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-10-12 16:42:04.491 1559-3322 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-10-12 16:42:04.492 2894-6639 Uwb.Rangin...n@9359822] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=1, package-name: com.google.android.gms, uid: 10158, pid: 2894]
2023-10-12 16:42:04.492 2894-32759 NearbyUWB com.google.android.gms.persistent I (REDACTED) Ranging Result: %s %s
2023-10-12 16:42:04.497 450-889 LoggingKt
2023-10-12 16:42:04.498 450-889 MainActivity
2023-10-12 16:42:04.729 969-969 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-10-12 16:42:04.730 1559-3322 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-10-12 16:42:04.730 1559-3322 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-10-12 16:42:04.730 1559-3322 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 23, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 3091, RangingStatus = 0, NLoS = 0, Distance = 81, AoaAzimuth = 35.585938, AoaAzimuthFom = 84, AoaElevation = 69.96875, AoaElevationFom = 42, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -97}], RawNotificationData = [23, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 48, -111, 0, 0, 81, 0, -53, 17, 84, -4, 34, 42, 0, 0, 0, 0, 0, 0, 0, -62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-10-12 16:42:04.731 1559-3322 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-10-12 16:42:04.731 2894-3264 Uwb.Rangin...n@9359822] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=1, package-name: com.google.android.gms, uid: 10158, pid: 2894]
2023-10-12 16:42:04.732 2894-32402 NearbyUWB com.google.android.gms.persistent I (REDACTED) Ranging Result: %s %s
2023-10-12 16:42:04.733 450-751 LoggingKt
2023-10-12 16:42:04.734 450-751 MainActivity
2023-10-12 16:42:04.969 969-969 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-10-12 16:42:04.970 1559-3322 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-10-12 16:42:04.970 1559-3322 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-10-12 16:42:04.970 1559-3322 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 24, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 3091, RangingStatus = 0, NLoS = 0, Distance = 81, AoaAzimuth = 39.21875, AoaAzimuthFom = 88, AoaElevation = 50.96875, AoaElevationFom = 84, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -88}], RawNotificationData = [24, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 48, -111, 0, 0, 81, 0, -100, 19, 88, 124, 25, 84, 0, 0, 0, 0, 0, 0, 0, -80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-10-12 16:42:04.971 1559-3322 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-10-12 16:42:04.971 2894-3264 Uwb.Rangin...n@9359822] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=1, package-name: com.google.android.gms, uid: 10158, pid: 2894]
2023-10-12 16:42:04.972 2894-32759 NearbyUWB com.google.android.gms.persistent I (REDACTED) Ranging Result: %s %s
2023-10-12 16:42:04.976 450-893 LoggingKt
2023-10-12 16:42:04.977 450-893 MainActivity
2023-10-12 16:42:05.209 969-969 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-10-12 16:42:05.210 1559-3322 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-10-12 16:42:05.210 1559-3322 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-10-12 16:42:05.210 1559-3322 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 25, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 3091, RangingStatus = 0, NLoS = 0, Distance = 97, AoaAzimuth = 64.57031, AoaAzimuthFom = 80, AoaElevation = 14.6796875, AoaElevationFom = 84, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -88}], RawNotificationData = [25, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 48, -111, 0, 0, 97, 0, 73, 32, 80, 87, 7, 84, 0, 0, 0, 0, 0, 0, 0, -80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-10-12 16:42:05.212 1559-3322 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-10-12 16:42:05.213 2894-3264 Uwb.Rangin...n@9359822] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=1, package-name: com.google.android.gms, uid: 10158, pid: 2894]
2023-10-12 16:42:05.213 2894-32402 NearbyUWB com.google.android.gms.persistent I (REDACTED) Ranging Result: %s %s
2023-10-12 16:42:05.217 450-751 LoggingKt
2023-10-12 16:42:05.219 450-751 MainActivity
2023-10-12 16:42:05.441 969-969 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-10-12 16:42:05.443 1559-3322 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-10-12 16:42:05.443 1559-3322 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-10-12 16:42:05.443 1559-3322 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 26, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 3091, RangingStatus = 36, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x01000000, RSSI = 0}], RawNotificationData = [26, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 48, -111, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-10-12 16:42:05.445 1559-3322 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-10-12 16:42:05.445 1559-3322 UwbSessionManager system_server V Starting error timer for 10000 ms.
2023-10-12 16:42:05.446 2894-3264 Uwb.Rangin...n@9359822] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=1, package-name: com.google.android.gms, uid: 10158, pid: 2894]
2023-10-12 16:42:05.448 2894-32759 NearbyUWB com.google.android.gms.persistent I (REDACTED) Ranging Result: %s %s
2023-10-12 16:42:05.452 450-890 LoggingKt
2023-10-12 16:42:05.453 450-890 MainActivity
2023-10-12 16:42:05.689 969-969 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-10-12 16:42:05.690 1559-3322 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-10-12 16:42:05.690 1559-3322 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-10-12 16:42:05.691 1559-3322 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 27, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 3091, RangingStatus = 0, NLoS = 0, Distance = 89, AoaAzimuth = 41.539062, AoaAzimuthFom = 57, AoaElevation = -10.765625, AoaElevationFom = 61, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -100}], RawNotificationData = [27, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 48, -111, 0, 0, 89, 0, -59, 20, 57, -98, -6, 61, 0, 0, 0, 0, 0, 0, 0, -56, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-10-12 16:42:05.693 1559-3322 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
na...@gmail.com <na...@gmail.com> #42
Multicast to the latest Estimote firmware with Android 14 won't be possible as the beacons run as the controller.
However I did try creating separate prepareSessions for each beacon and I actually see ranging from the other beacon, but currently all the Estimote beacons seem to run with session ID set to 1, which means the prepareSession with that session Id gets the ranging result which is rejected as an unknown peer:
0-17 10:59:52.202 1648-20325 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 11, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = C9B3, RangingStatus = 0, NLoS = 0, Distance = 76, AoaAzimuth = -64.734375, AoaAzimuthFom = 88, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -82}], RawNotificationData = [11, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -55, -77, 0, 0, 76, 0, -94, -33, 88, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -92, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-10-17 10:59:52.204 1648-20325 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-10-17 10:59:52.204 2863-3524 Uwb.Rangin...on@5a8492] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=7, package-name: com.google.android.gms, uid: 10104, pid: 2863]
2023-10-17 10:59:52.205 2863-21301 NearbyUWB com.google.android.gms.persistent I (REDACTED) Ranging Result: %s %s
2023-10-17 10:59:52.209 21209-21319 LoggingKt
2023-10-17 10:59:52.210 21209-21319 MainActivity
2023-10-17 10:59:52.251 1028-1028 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2023-10-17 10:59:52.252 1648-20325 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-10-17 10:59:52.252 1648-20325 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-10-17 10:59:52.252 1648-20325 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 11, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 6973, RangingStatus = 0, NLoS = 0, Distance = 58, AoaAzimuth = -64.734375, AoaAzimuthFom = 88, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -82}], RawNotificationData = [11, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 105, 115, 0, 0, 58, 0, -94, -33, 88, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -92, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-10-17 10:59:52.253 1648-20325 UwbSessionManager system_server D Failure to find controlee 0x6973
2023-10-17 10:59:52.253 1648-20325 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-10-17 10:59:52.253 2863-3524 Uwb.Rangin...on@5a8492] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=7, package-name: com.google.android.gms, uid: 10104, pid: 2863]
2023-10-17 10:59:52.254 2863-20890 UwbBackend com.google.android.gms.persistent W Received ranging data from unknown peer 0X6973.
Hopefully Estimote can allow different session IDs to be passed in at configureAndStart time over BLE.
na...@gmail.com <na...@gmail.com> #43
2023-10-17 11:42:59.081 25704-25796 UwbMangerImpl
2023-10-17 11:42:59.117 2827-6542 NearbyUWB com.google.android.gms.persistent I (REDACTED) onGetService: Create client bridge with key %s
2023-10-17 11:42:59.117 2827-6542 NearbyUWB com.google.android.gms.persistent I (REDACTED) Analytics is enabled for package %s
2023-10-17 11:42:59.125 2827-6542 NearbyUWB com.google.android.gms.persistent I (REDACTED) Client %s with package name %s, 0p Identifier %s, and sdk version %s has connected.
2023-10-17 11:42:59.146 1523-1551 UwbConfManager system_server D getCapsInfo for protocol: generic
2023-10-17 11:42:59.146 1523-1551 uwb system_server D uwb_uci_jni_rust::uci_jni_android_new: Java_com_android_server_uwb_jni_NativeUwbManager_nativeGetCapsInfo: enter
2023-10-17 11:42:59.146 1523-16810 uwb system_server D uwb_core::uci::uci_manager: Received cmd: SendUciCommand { cmd: CoreGetCapsInfo }
2023-10-17 11:42:59.147 955-955 qorvo.uwb....m_uwb_chip android.hardware.qorvo.uwb-service D Receive 4 bytes from AP: 20030000
2023-10-17 11:42:59.147 955-955 qorvo.uwb.al.uci_port android.hardware.qorvo.uwb-service I AP: forward CMD packet GID=0x0 OID=0x3 length=0
2023-10-17 11:42:59.147 955-955 qorvo.uwb.qm_uci_tr android.hardware.qorvo.uwb-service D Send 4 bytes to chip: 20030000
2023-10-17 11:42:59.153 955-16815 qorvo.uwb.qm_uci_tr android.hardware.qorvo.uwb-service I fd_read(): uci pkt length 146, errno = Success
2023-10-17 11:42:59.153 955-16815 qorvo.uwb.qm_uci_tr android.hardware.qorvo.uwb-service D Receive 146 bytes from chip: 4003008E0023A0017FA10400000F00A201F8A30103A4020100A5020001A609000102101112202122A70401000000A8010800040101010101040101010102010303010604011F0501030601020701030801010901010A01010B01090C010A0D01010E01080F05000000000010010F110100E30101E504000000FFE60101E70101C00101E40403000000E804B0040000E90108
2023-10-17 11:42:59.153 955-16815 qorvo.uwb.al.uci_port android.hardware.qorvo.uwb-service I QM: forward RSP packet GID=0x0 OID=0x3 length=142
2023-10-17 11:42:59.153 955-16815 qorvo.uwb....m_uwb_chip android.hardware.qorvo.uwb-service D send 146 bytes to AP: 4003008E0023A0017FA10400000F00A201F8A30103A4020100A5020001A609000102101112202122A70401000000A8010800040101010101040101010102010303010604011F0501030601020701030801010901010A01010B01090C010A0D01010E01080F05000000000010010F110100E30101E504000000FFE60101E70101C00101E40403000000E804B0040000E90108
2023-10-17 11:42:59.154 1523-1551 UwbConfManager system_server I getCapsInfo respData: UwbTlvData { status = 0 length = 35, tlvs = [A0017FA10400000F00A201F8A30103A4020100A5020001A609000102101112202122A70401000000A8010800040101010101040101010102010303010604011F0501030601020701030801010901010A01010B01090C010A0D01010E01080F05000000000010010F110100E30101E504000000FFE60101E70101C00101E40403000000E804B0040000E90108] }
2023-10-17 11:42:59.154 1523-1551 TlvDecoderBuffer system_server I Parsed TLV: Tlv[tagType: -96, length: 1, value: 7F]
2023-10-17 11:42:59.154 1523-1551 TlvDecoderBuffer system_server I Parsed TLV: Tlv[tagType: -95, length: 4, value: 00000F00]
2023-10-17 11:42:59.154 1523-1551 TlvDecoderBuffer system_server I Parsed TLV: Tlv[tagType: -94, length: 1, value: F8]
2023-10-17 11:42:59.154 1523-1551 TlvDecoderBuffer system_server I Parsed TLV: Tlv[tagType: -93, length: 1, value: 03]
2023-10-17 11:42:59.154 1523-1551 TlvDecoderBuffer system_server I Parsed TLV: Tlv[tagType: -92, length: 2, value: 0100]
2023-10-17 11:42:59.154 1523-1551 TlvDecoderBuffer system_server I Parsed TLV: Tlv[tagType: -91, length: 2, value: 0001]
2023-10-17 11:42:59.154 1523-1551 TlvDecoderBuffer system_server I Parsed TLV: Tlv[tagType: -90, length: 9, value: 000102101112202122]
2023-10-17 11:42:59.154 1523-1551 TlvDecoderBuffer system_server I Parsed TLV: Tlv[tagType: -89, length: 4, value: 01000000]
2023-10-17 11:42:59.154 1523-1551 TlvDecoderBuffer system_server I Parsed TLV: Tlv[tagType: -88, length: 1, value: 08]
2023-10-17 11:42:59.154 1523-1551 TlvDecoderBuffer system_server I Parsed TLV: Tlv[tagType: 0, length: 4, value: 01010101]
2023-10-17 11:42:59.154 1523-1551 TlvDecoderBuffer system_server I Parsed TLV: Tlv[tagType: 1, length: 4, value: 01010101]
2023-10-17 11:42:59.154 1523-1551 TlvDecoderBuffer system_server I Parsed TLV: Tlv[tagType: 2, length: 1, value: 03]
2023-10-17 11:42:59.154 1523-1551 TlvDecoderBuffer system_server I Parsed TLV: Tlv[tagType: 3, length: 1, value: 06]
2023-10-17 11:42:59.154 1523-1551 TlvDecoderBuffer system_server I Parsed TLV: Tlv[tagType: 4, length: 1, value: 1F]
2023-10-17 11:42:59.154 1523-1551 TlvDecoderBuffer system_server I Parsed TLV: Tlv[tagType: 5, length: 1, value: 03]
2023-10-17 11:42:59.154 1523-1551 TlvDecoderBuffer system_server I Parsed TLV: Tlv[tagType: 6, length: 1, value: 02]
2023-10-17 11:42:59.154 1523-1551 TlvDecoderBuffer system_server I Parsed TLV: Tlv[tagType: 7, length: 1, value: 03]
2023-10-17 11:42:59.154 1523-1551 TlvDecoderBuffer system_server I Parsed TLV: Tlv[tagType: 8, length: 1, value: 01]
2023-10-17 11:42:59.154 1523-1551 TlvDecoderBuffer system_server I Parsed TLV: Tlv[tagType: 9, length: 1, value: 01]
2023-10-17 11:42:59.154 1523-1551 TlvDecoderBuffer system_server I Parsed TLV: Tlv[tagType: 10, length: 1, value: 01]
2023-10-17 11:42:59.154 1523-1551 TlvDecoderBuffer system_server I Parsed TLV: Tlv[tagType: 11, length: 1, value: 09]
2023-10-17 11:42:59.154 1523-1551 TlvDecoderBuffer system_server I Parsed TLV: Tlv[tagType: 12, length: 1, value: 0A]
2023-10-17 11:42:59.154 1523-1551 TlvDecoderBuffer system_server I Parsed TLV: Tlv[tagType: 13, length: 1, value: 01]
2023-10-17 11:42:59.154 1523-1551 TlvDecoderBuffer system_server I Parsed TLV: Tlv[tagType: 14, length: 1, value: 08]
2023-10-17 11:42:59.155 1523-1551 TlvDecoderBuffer system_server I Parsed TLV: Tlv[tagType: 15, length: 5, value: 0000000000]
2023-10-17 11:42:59.155 1523-1551 TlvDecoderBuffer system_server I Parsed TLV: Tlv[tagType: 16, length: 1, value: 0F]
2023-10-17 11:42:59.155 1523-1551 TlvDecoderBuffer system_server I Parsed TLV: Tlv[tagType: 17, length: 1, value: 00]
2023-10-17 11:42:59.155 1523-1551 TlvDecoderBuffer system_server I Parsed TLV: Tlv[tagType: -29, length: 1, value: 01]
2023-10-17 11:42:59.155 1523-1551 TlvDecoderBuffer system_server I Parsed TLV: Tlv[tagType: -27, length: 4, value: 000000FF]
2023-10-17 11:42:59.155 1523-1551 TlvDecoderBuffer system_server I Parsed TLV: Tlv[tagType: -26, length: 1, value: 01]
2023-10-17 11:42:59.155 1523-1551 TlvDecoderBuffer system_server I Parsed TLV: Tlv[tagType: -25, length: 1, value: 01]
2023-10-17 11:42:59.155 1523-1551 TlvDecoderBuffer system_server I Parsed TLV: Tlv[tagType: -64, length: 1, value: 01]
2023-10-17 11:42:59.155 1523-1551 TlvDecoderBuffer system_server I Parsed TLV: Tlv[tagType: -28, length: 4, value: 03000000]
2023-10-17 11:42:59.155 1523-1551 TlvDecoderBuffer system_server I Parsed TLV: Tlv[tagType: -24, length: 4, value: B0040000]
2023-10-17 11:42:59.155 1523-1551 TlvDecoderBuffer system_server I Parsed TLV: Tlv[tagType: -23, length: 1, value: 08]
2023-10-17 11:42:59.156 1523-1551 FiraDecoder system_server W SUPPORTED_MAX_MESSAGE_SIZE not found.
2023-10-17 11:42:59.156 1523-1551 FiraDecoder system_server W SUPPORTED_MAX_DATA_PACKET_PAYLOAD_SIZE not found.
2023-10-17 11:42:59.156 1523-1551 FiraDecoder system_server W SUPPORTED_MAX_RANGING_SESSION_NUMBER not found
2023-10-17 11:42:59.156 1523-1551 CccDecoder system_server W SUPPORTED_MAX_RANGING_SESSION_NUMBER not found
2023-10-17 11:42:59.156 1523-1551 CccDecoder system_server W SUPPORTED_MIN_UWB_INITIATION_TIME_MS not found
2023-10-17 11:42:59.162 25704-25827 Binder
java.lang.NullPointerException: Attempt to get length of null array
at com.google.android.gms.internal.nearby.zzuw.zzb(com.google.android.gms:play-services-nearby@@19.0.0:1)
at com.google.android.gms.internal.nearby.zzsr.zzd(com.google.android.gms:play-services-nearby@@19.0.0:14)
at com.google.android.gms.internal.nearby.zzpl.zza(com.google.android.gms:play-services-nearby@@19.0.0:3)
at com.google.android.gms.internal.nearby.zzb.onTransact(com.google.android.gms:play-services-nearby@@19.0.0:3)
at android.os.Binder.execTransactInternal(Binder.java:1344)
at android.os.Binder.execTransact(Binder.java:1275)
na...@gmail.com <na...@gmail.com> #44
Is this what you expect?
sh...@google.com <sh...@google.com>
sh...@google.com <sh...@google.com> #45
I still see the non-zero ranging status in between 0, but this time it is RangingStatus 34... as per my usual comment... what do the non-zero RangingStatus codes mean?
Anything other than status 0 wont be propagated to the app. FYI, aosp status codes in
Can you check whether UWB is enabled on the phone?
There is a new jetpack version available for uwb, 1.0.0-alpha07, trying using that to be on the latest.
na...@gmail.com <na...@gmail.com> #46
As far as the Pixel 8 Pro goes, we are already using Alpha 7 and UWB is definitely enabled and I tried turning it off / on again as well as a reboot.
sh...@google.com <sh...@google.com> #47
Can you share us which image is running on pixel 8 pro and gms version ?
Also, pls share the bugreport for the above crash.
na...@gmail.com <na...@gmail.com> #48
sh...@google.com <sh...@google.com> #49
There were few changes and fixed we made for handling ranging capabilities. Can you update the gmscore to latest and try ?
sh...@google.com <sh...@google.com>
na...@gmail.com <na...@gmail.com> #50
There were few changes and fixed we made for handling ranging capabilities. Can you update the gmscore to latest and try ?
It appears that the Pixel 8 Pro did get a Google Play Services hidden "app" update this morning, as I saw the (blink and you miss it) updating Play Services notification this morning. I should say that the phone was showing "All apps up to date" in the Play Store yesterday and none today. For reference, how are we meant to force a gmscore update, as presumably it was just rolled out in batches and it hadn't reached my phone?
It does appear to have fixed UWB ranging not working on the Pixel 8 Pro though.
Of course we still see periodic nulls for azimuth / elevation, but the UWB tracing is different :
2023-10-18 09:54:53.417 952-2961 qorvo.uwb.qm_uci_tr android.hardware.qorvo.uwb-service I fd_read(): uci pkt length 60, errno = Success
2023-10-18 09:54:53.418 952-2961 qorvo.uwb.qm_uci_tr android.hardware.qorvo.uwb-service D Receive 60 bytes from chip: 620000382E0000000100000000F0000000010000000000000000000001C9B300009A008911584F0C5800000000000000B10000000000000000000000
2023-10-18 09:54:53.418 952-2961 qorvo.uwb.al.uci_port android.hardware.qorvo.uwb-service I QM: forward NTF packet GID=0x2 OID=0x0 length=56
2023-10-18 09:54:53.418 952-2961 qorvo.uwb....m_uwb_chip android.hardware.qorvo.uwb-service D send 60 bytes to AP: 620000382E0000000100000000F0000000010000000000000000000001C9B300009A008911584F0C5800000000000000B10000000000000000000000
2023-10-18 09:54:53.419 1438-2957 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-10-18 09:54:53.419 1438-2957 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-10-18 09:54:53.419 1438-2957 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 46, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = C9B3, RangingStatus = 0, NLoS = 0, Distance = 154, AoaAzimuth = 35.070312, AoaAzimuthFom = 88, AoaElevation = 24.617188, AoaElevationFom = 88, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -88}], RawNotificationData = [46, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -55, -77, 0, 0, -102, 0, -119, 17, 88, 79, 12, 88, 0, 0, 0, 0, 0, 0, 0, -79, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-10-18 09:54:53.422 1438-2957 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-10-18 09:54:53.423 22050-22062 Uwb.Rangin...n@5079d18] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=6, package-name: com.google.android.gms, uid: 10149, pid: 22050]
2023-10-18 09:54:53.424 22050-4840 NearbyUWB com.google.android.gms.persistent I (REDACTED) Ranging Result: %s %s
2023-10-18 09:54:53.427 4677-4725 LoggingKt com.example.app D [nvsdk] UWB position for device: C9:B3 azimuth: -126.069145 elevation: -55.140583 distance: 1.4399998
2023-10-18 09:54:53.428 4677-4725 MainActivity com.example.app D Estimote UWB device: C9:B3 azimuth: -126.069145 elevation: -55.140583 distance: 1.4399998
2023-10-18 09:54:53.647 952-2961 qorvo.uwb.qm_uci_tr android.hardware.qorvo.uwb-service I fd_read(): uci pkt length 60, errno = Success
2023-10-18 09:54:53.648 952-2961 qorvo.uwb.qm_uci_tr android.hardware.qorvo.uwb-service D Receive 60 bytes from chip: 620000382F0000000100000000F0000000010000000000000000000001C9B32200000000000000000000000000000000000000000000000000000000
2023-10-18 09:54:53.648 952-2961 qorvo.uwb.al.uci_port android.hardware.qorvo.uwb-service I QM: forward NTF packet GID=0x2 OID=0x0 length=56
2023-10-18 09:54:53.648 952-2961 qorvo.uwb....m_uwb_chip android.hardware.qorvo.uwb-service D send 60 bytes to AP: 620000382F0000000100000000F0000000010000000000000000000001C9B32200000000000000000000000000000000000000000000000000000000
2023-10-18 09:54:53.649 1438-2957 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2023-10-18 09:54:53.650 1438-2957 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2023-10-18 09:54:53.650 1438-2957 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 47, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = C9B3, RangingStatus = 34, NLoS = 0, Distance = 0, AoaAzimuth = 0.0, AoaAzimuthFom = 0, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = 0}], RawNotificationData = [47, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -55, -77, 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2023-10-18 09:54:53.653 1438-2957 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2023-10-18 09:54:53.653 1438-2957 UwbSessionManager system_server V Starting error timer for 10000 ms.
2023-10-18 09:54:53.653 22050-22062 Uwb.Rangin...n@5079d18] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=6, package-name: com.google.android.gms, uid: 10149, pid: 22050]
2023-10-18 09:54:53.655 22050-4610 NearbyUWB com.google.android.gms.persistent I (REDACTED) Ranging Result: %s %s
2023-10-18 09:54:53.662 4677-4725 LoggingKt com.example.app D [nvsdk] UWB position for device: C9:B3 azimuth: null elevation: null distance: 1.4399998
2023-10-18 09:54:53.663 4677-4725 MainActivity com.example.app D Estimote UWB device: C9:B3 azimuth: null elevation: null distance: 1.4399998
Having looked at the AOSP link:
public static final int STATUS_CODE_RANGING_RX_PHY_DEC_FAILED = 0x22;
If only we had access to the super secret FiRA docs without having to pay to become members so we could know what this means ;)
Aha... a little more info in the Qorvo docs:
1.2.3.50.2 Constants
FIRA_STATUS_RANGING_INTERNAL_ERROR Implementation specific error.
FIRA_STATUS_RANGING_SUCCESS Ranging info are valid.
FIRA_STATUS_RANGING_TX_FAILED Failed to transmit UWB packet.
FIRA_STATUS_RANGING_RX_TIMEOUT No UWB packet detected by the receiver.
FIRA_STATUS_RANGING_RX_PHY_DEC_FAILED UWB packet channel decoding error.
FIRA_STATUS_RANGING_RX_PHY_TOA_FAILED Failed to detect time of arrival of the UWB packet from CIR samples.
FIRA_STATUS_RANGING_RX_PHY_STS_FAILED UWB packet STS segment mismatch.
FIRA_STATUS_RANGING_RX_MAC_DEC_FAILED MAC CRC or syntax error.
FIRA_STATUS_RANGING_RX_MAC_IE_DEC_FAILED IE syntax error.
FIRA_STATUS_RANGING_RX_MAC_IE_MISSING Expected IE missing in the packet.
na...@gmail.com <na...@gmail.com> #51
It appears that most of the RangingStatus errors are now 33 or 34 (apart from 36/37 when we had a bad configuration either in the App or in the Android 13 setup for the Pixel Fold).
33 = FIRA_STATUS_RANGING_RX_TIMEOUT No UWB packet detected by the receiver.
34 = FIRA_STATUS_RANGING_RX_PHY_DEC_FAILED UWB packet channel decoding error.
I guess the timeout could be interference, although I am holding the phones above the beacons which are on a solid wooden table. The beacons are in close proximity, even though we can only range to one at a time, due to the current hardcoded session ID in the Estimote beacons.
Any ideas why we are seeing the fairly frequent "UWB packet channel decoding error" ?
sh...@google.com <sh...@google.com> #52
Have you tried ranging between 2 pixel devices ? Do you still see the same ranging status?
What is the ranging interval / update rate for estimote device ?
This is our update rate
na...@gmail.com <na...@gmail.com> #53
We run at automatic:
val rangingParameters = RangingParameters(
uwbConfigType = CONFIG_UNICAST_DS_TWR,
// SessionKeyInfo is used to encrypt the ranging session.
sessionId = session,
sessionKeyInfo = sessionKey,
complexChannel = uwbChannel,
peerDevices = listOf(device),
updateRateType = RangingParameters.RANGING_UPDATE_RATE_AUTOMATIC,
subSessionId = 0,
subSessionKeyInfo = null
)
I haven't tried to a phone, as we are trying to implement beacon based ranging and it wasn't possible to integrate the phone based into our SDK. I can try putting it in just the app, not the SDK, but it won't be very quick.
rp...@google.com <rp...@google.com> #54
I haven't tried to a phone, as we are trying to implement beacon based ranging and it wasn't possible to integrate the phone based into our SDK. I can try putting it in just the app, not the SDK, but it won't be very quick.
I think we may need to reach out to estimote to better understand if there are issues at the MAC layer on their beacons. We don't see this level of errors on our internal testing between phones.
I guess the timeout could be interference, although I am holding the phones above the beacons which are on a solid wooden table. The beacons are in close proximity, even though we can only range to one at a time, due to the current hardcoded session ID in the Estimote beacons.
We generally test using the 2 devices back to back as described
ja...@estimote.com <ja...@estimote.com> #55
Yes, it seems there might be needed another firmware update for Estimote UWB Beacons to support Android 14 SDK to both discover and range to multiple UWB beacons at the same time. This is already working on our end with iOS SDK and we are working to fix this also for Android SDK.
Please note we are talking about ranging from 1 phone to multiple beacons.
Ranging from multiple phones to a single UWB beacon is a separate story.
na...@gmail.com <na...@gmail.com> #56
Just checking with the latest Jetpack Alpha8 build and we still see intermittent nulls coming back:
2024-02-07 15:21:04.403 3172-5873 Uwb.Rangin...n@e597673] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=5, package-name: com.google.android.gms, uid: 10104, pid: 3172]
2024-02-07 15:21:04.405 3172-19697 NearbyUWB com.google.android.gms.persistent I (REDACTED) Ranging Result: %s %s
2024-02-07 15:21:04.407 19187-19285 LoggingKt com.example.app D [nvsdk] UWB position for device: 30:91 azimuth: null elevation: null distance: 1.1199963
2024-02-07 15:21:04.408 19187-19285 MainActivity com.example.app D Estimote UWB device: 30:91 azimuth: null elevation: null distance: 1.1199963
2024-02-07 15:21:04.525 19187-19285 LoggingKt com.example.app D [nvsdk] StartRanging waiting for 1 UWB beacon connection(s)
2024-02-07 15:21:04.644 1261-1261 qorvo.uwb.uwbmac android.hardware.qorvo.uwb.service I report_nl_cb
2024-02-07 15:21:04.644 1665-3506 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: session notification callback.
2024-02-07 15:21:04.644 1665-3506 uwb system_server D uwb_uci_jni_rust::notification_manager_android: UCI JNI: callback onRangeDataNotificationReceived
2024-02-07 15:21:04.644 1665-3506 NativeUwbManager system_server D onRangeDataNotificationReceived : UwbRangingData { SeqCounter = 101, SessionId = 1, RcrIndication = 0, CurrRangingInterval = 240, RangingMeasuresType = 1, MacAddressMode = 0, NoOfRangingMeasures = 1, RangingTwoWayMeasures = [UwbTwoWayMeasurement { MacAddress = 3091, RangingStatus = 0, NLoS = 0, Distance = 75, AoaAzimuth = 45.203125, AoaAzimuthFom = 92, AoaElevation = 0.0, AoaElevationFom = 0, AoaDestAzimuth = 0.0, AoaDestAzimuthFom = 0, AoaDestElevation = 0.0, AoaDestElevationFom = 0, SlotIndex = 0x00000000, RSSI = -80}], RawNotificationData = [101, 0, 0, 0, 1, 0, 0, 0, 0, -16, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 48, -111, 0, 0, 75, 0, -102, 22, 92, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -96, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
2024-02-07 15:21:04.645 1665-3506 UwbSessionNotiManager system_server I IUwbRangingCallbacks - onRangingResult
2024-02-07 15:21:04.646 3172-5873 Uwb.Rangin...n@e597673] com.google.android.gms.persistent V onRangingResult - sessionHandle: SessionHandle [id=5, package-name: com.google.android.gms, uid: 10104, pid: 3172]
2024-02-07 15:21:04.646 3172-19697 NearbyUWB com.google.android.gms.persistent I (REDACTED) Ranging Result: %s %s
2024-02-07 15:21:04.648 19187-19308 LoggingKt com.example.app D [nvsdk] UWB position for device: 30:91 azimuth: 104.18048 elevation: 15.395076 distance: 0.75
2024-02-07 15:21:04.648 19187-19308 MainActivity com.example.app D Estimote UWB device: 30:91 azimuth: 104.18048 elevation: 15.395076 distance: 0.75
Interestingly, we also seem to have got a sneak peek at what must be coming soon in UWB... doppler radar support:
2024-02-07 15:39:18.174 1509-2623 UwbConfManager pid-1509 I getCapsInfo respData: UwbTlvData { status = 0 length = 37, tlvs = [A0017FA10400000F00A201F8A4020100A5020001A603101112A70402000000A90400000000A801010004010101010104010101010201030301060401190501030601020701020801010901010A01010B0109A301030C010A0D01010E01080F05000000000010010F110100E30101C00101E4010EE50407000000E60101E70101E90108EA0109E804B0040000] }
2024-02-07 15:39:18.178 1509-2623 GenericDecoder pid-1509 V Failed to decode Radar capabilities
java.lang.IllegalArgumentException: Tag type: 176 not present
at com.android.server.uwb.params.TlvDecoderBuffer.getTlv(TlvDecoderBuffer.java:132)
at com.android.server.uwb.params.TlvDecoderBuffer.getByte(TlvDecoderBuffer.java:138)
at com.android.server.uwb.params.RadarDecoder.getRadarSpecificationParamsFromTlvBuffer(RadarDecoder.java:45)
at com.android.server.uwb.params.RadarDecoder.getParams(RadarDecoder.java:32)
at com.android.server.uwb.params.GenericDecoder.getSpecificationParamsFromTlvBuffer(GenericDecoder.java:64)
at com.android.server.uwb.params.GenericDecoder.getParams(GenericDecoder.java:38)
at com.android.server.uwb.UwbConfigurationManager.decodeTLV(UwbConfigurationManager.java:137)
at com.android.server.uwb.UwbConfigurationManager.getCapsInfo(UwbConfigurationManager.java:108)
at com.android.server.uwb.UwbServiceCore.getSpecificationInfo(UwbServiceCore.java:455)
at com.android.server.uwb.UwbServiceCore.getCachedSpecificationParams(UwbServiceCore.java:432)
at com.android.server.uwb.UwbSessionManager.getMaxFiraSessionsNumber(UwbSessionManager.java:939)
at com.android.server.uwb.UwbSessionManager.initSession(UwbSessionManager.java:568)
at com.android.server.uwb.UwbServiceCore.openRanging(UwbServiceCore.java:532)
at com.android.server.uwb.UwbServiceImpl.openRanging(UwbServiceImpl.java:290)
at android.uwb.IUwbAdapter$Stub.onTransact(IUwbAdapter.java:720)
at android.os.Binder.execTransactInternal(Binder.java:1358)
at android.os.Binder.execTransact(Binder.java:1304)
Presumably this means AOSP support for something like:
Description
Version used: uwb:1.0.0-alpha05
Devices/Android versions reproduced on: Pixel 6 Pro Android 13 May 2023 updates for Play / Security
We are trying to initiate ranging to multiple Estimote UWB beacons using CONFIG_MULTICAST_DS_TWR, as the documentation states this has to be used for a list of UWB devices.
Estimote beacons require us to run as a Controlee.
There seems to be no UWB related tracing when looking at the logcat UWB tracing after doing the sessionFlow.collect.
So is multicast supported for Controlee and is it currently working?
We do see this issue which appears to have been fixed on 18th May 2023, so presumably this could be part of the July fix that was mentioned in our other issue...
clientSession = uwb.controleeSessionScope()
...
private suspend fun startRanging(devices: List<UwbDevice>, uwbChannelNum: Int, preamble: Int, sessionId: Int, sessionKey: ByteArray) {
...
// Create the ranging parameters.
val rangingParameters = RangingParameters(
uwbConfigType = CONFIG_MULTICAST_DS_TWR,
// SessionKeyInfo is used to encrypt the ranging session.
sessionId = sessionId,
sessionKeyInfo = sessionKey,
complexChannel = uwbChannel,
peerDevices = devices,
updateRateType = RangingParameters.RANGING_UPDATE_RATE_AUTOMATIC
)
val sessionFlow = clientSession.prepareSession(rangingParameters)
...
sessionFlow.collect {