ncs sdk cjson problem

hi support team,

when i testing wifi location, i found out one problem:

nrf_cloud_rest: Failed to encode location request, err: -12

that is this code in nrf_cloud_rest.c, err code is -12 means no memory. 

	ret = nrf_cloud_obj_cloud_encode(&payload_obj);
	if (ret) {
		LOG_ERR("Failed to encode location request, err: %d", ret);
		goto clean_up;
	}

and after debug, find out the the error happens in the cjson.c line1202

   if (!print_value(item, buffer))
    {
        printk("!print_value(item, buffer)\r\n");
        goto fail;
    }

and next debug find out the error is in  "print_object(item, output_buffer)" line 1437 in cJson.c

here is the debug log from my side:

[14:11:37.907] [00:00:00.408,508] <inf> wifi_nrf_bus: SPIM spi@b000: freq = 8 MHz
[14:11:37.907] [00:00:00.415,039] <inf> wifi_nrf_bus: SPIM
[14:11:37.910]  spi@b000: latency = 0
[14:11:37.910] *** Booting nRF Connect SDK v3.0.2-89ba1294ac9b ***
[14:11:38.117] *** Using Zephyr OS v4.0.99-f791c49f492c ***
[14:11:38.122] Location sample started
[14:11:38.122] 
[14:11:38.122] Connecting to LTE...
[14:11:38.367] 
[14:11:40.155] +CEREG: 2,"5B12","0183761A",9
[14:11:40.155] 
[14:11:40.891] +CSCON: 1
[14:11:40.891] 
[14:11:42.312] +CGEV: ME PDN ACT 0,0
[14:11:42.312] +CNEC_ESM: 50,0
[14:11:42.417] +CEREG: 1,"5B12","0183761A",9,,,"00000100","01011111"
[14:11:42.427] Connected to LTE
[14:11:42.427] %XTIME: "23","52703260112423","00"
[14:11:42.427] Waiting for current time
[14:11:42.427] [00:00:04.935,760] <dbg> location: location_core_init: Initialized 'GNSS' method successfully
[14:11:42.436] [00:00:04.944,641] <dbg> location: location_core_init: Initialized 'Cellular' method successfully
[14:11:42.446] [00:00:04.953,887] <dbg> location: location_core_init: Initialized 'Wi-Fi' method successfully
[14:11:42.459] [00:00:04.962,890] <dbg> location: location_core_init: Initialized 'Wi-Fi + Cellular' method successfully
[14:11:42.468] [00:00:04.972,808] <dbg> location: location_init: Location library initialized
[14:11:42.478] Requesting Wi-Fi location with GNSS and cellular fallback...
[14:11:42.478] [00:00:04.985,778] <dbg> location: location_core_config_log: Location configuration:
[14:11:42.488] [00:00:04.993,927] <dbg> location: location_core_config_log:   Methods count: 2
[14:11:42.496] [00:00:05.001,617] <dbg> location: location_core_config_log:   Interval: 60
[14:11:42.508] [00:00:05.008,941] <dbg> location: location_core_config_log:   Timeout: 300000ms
[14:11:42.508] [00:00:05.016,723] <dbg> location: location_core_config_log:   Mode: 0
[14:11:42.518] [00:00:05.023,651] <dbg> location: location_core_config_log:   List of methods:
[14:11:42.527] [00:00:05.031,341] <dbg> location: location_core_config_log:     Method #0
[14:11:42.527] [00:00:05.038,635] <dbg> location: location_core_config_log:       Method type: Cellular (1)
[14:11:42.536] [00:00:05.047,454] <dbg> location: location_core_config_log:       Timeout: 30000ms
[14:11:42.548] [00:00:05.055,480] <dbg> location: location_core_config_log:       Cell count: 4
[14:11:42.557] [00:00:05.063,262] <dbg> location: location_core_config_log:     Method #1
[14:11:42.568] [00:00:05.070,556] <dbg> location: location_core_config_log:       Method type: Wi-Fi (3)
[14:11:42.577] [00:00:05.079,101] <dbg> location: location_core_config_log:       Timeout: 30000ms
[14:11:42.577] [00:00:05.087,158] <inf> location: Wi-Fi and cellular methods combined
[14:11:42.588] [00:00:05.094,055] <dbg> location: location_request_info_create: Updated location method list:
[14:11:42.597] [00:00:05.103,057] <dbg> location: location_request_info_create:     Method #0 type: Wi-Fi + Cellular (4)
[14:11:42.607] [00:00:05.113,006] <dbg> location: location_core_location_get_pos: Requesting location with 'Wi-Fi + Cellular' method
[14:11:42.617] [00:00:05.123,992] <dbg> location: location_core_location_get_pos: Starting request timer with timeout=300000
[14:11:42.627] [00:00:05.134,307] <dbg> location: scan_wifi_execute: Triggering start of Wi-Fi scanning
[14:11:42.631] [00:00:05.153,472] <dbg> location: scan_wifi_execute: Starting Wi-Fi timer with timeout=30000
[14:11:42.657] [00:00:05.163,879] <dbg> location: scan_cellular_execute: Triggering cell measurements timeout=30000, cell_count=4
[14:11:42.668] [00:00:05.174,560] <dbg> location: scan_cellular_execute: Starting cellular timer with timeout=30000
[14:11:42.677] [00:00:05.184,112] <dbg> location: scan_cellular_execute: Normal neighbor search (NCELLMEAS=1)
[14:11:42.688] %NCELLMEAS: 0,"0183761A","46000","5B12",48,3684,168,61,21,4195,4058
[14:11:42.698] [00:00:05.200,744] <dbg> location: scan_cellular_lte_ind_handler: Cell measurements results received: ncells_count=0, gci_cells_count=0, current_cell.id=0x0183761A
[14:11:42.708] [00:00:05.215,667] <dbg> location: scan_cellular_lte_ind_handler: No neighbor cell information from modem
[14:11:42.717] [00:00:05.225,585] <dbg> location: scan_cellular_lte_ind_handler: No surrounding cell information from modem
[14:11:42.727] [00:00:05.235,870] <dbg> location: scan_cellular_execute: RRC already in idle mode
[14:11:42.737] [00:00:05.243,774] <dbg> location: scan_cellular_execute: GCI history search (NCELLMEAS=3,5)
[14:11:42.747] %NCELLMEAS: 0,"0183761A","46000","5B12",48,4058,3684,168,61,22,4395,1,0
[14:11:42.757] [00:00:05.262,054] <dbg> location: scan_cellular_lte_ind_handler: Cell measurements results received: ncells_count=0, gci_cells_count=0, current_cell.id=0x0183761A
[14:11:42.766] [00:00:05.276,977] <dbg> location: scan_cellular_lte_ind_handler: No neighbor cell information from modem
[14:11:42.778] [00:00:05.286,926] <dbg> location: scan_cellular_lte_ind_handler: No surrounding cell information from modem
[14:11:42.787] [00:00:05.297,210] <dbg> location: scan_cellular_execute: GCI regional search (NCELLMEAS=4,4)
[14:11:42.798] %NCELLMEAS: 0,"0183761A","46000","5B12",48,4058,3684,168,61,22,4395,1,0
[14:11:42.806] [00:00:05.315,368] <dbg> location: scan_cellular_lte_ind_handler: Cell measurements results received: ncells_count=0, gci_cells_count=0, cur
[14:11:42.827] rent_cell.id=0x0183761A
[14:11:42.827] [00:00:05.330,291] <dbg> location: scan_cellular_lte_ind_handler: No neighbor cell information from modem
[14:11:42.838] [00:00:05.340,209] <dbg> location: scan_cellular_lte_ind_handler: No surrounding cell information from modem
[14:11:42.839] 
[14:11:47.269] [00:00:09.772,399] <dbg> location: scan_wifi_result_handle: scan result #1 stored: ssid HUAWEI-B940, channel 6, mac 04:bd:70:6f:b9:40
[14:11:47.278] [00:00:09.784,973] <dbg> location: scan_wifi_result_handle: scan result #2 stored: ssid Nordicsh, channel 6, mac 04:bd:70:6f:b9:41
[14:11:47.287] [00:00:09.797,149] <dbg> location: scan_wifi_result_handle: scan result #3 stored: ssid Nordicsh, channel 165, mac 04:bd:70:6f:b9:51
[14:11:47.307] [00:00:09.809,539] <dbg> location: scan_wifi_result_handle: scan result #4 stored: ssid HUAWEI-B940, channel 165, mac 04:bd:70:6f:b9:50
[14:11:47.317] [00:00:09.822,143] <dbg> location: scan_wifi_result_handle: scan result #5 stored: ssid Nordic_ASUS, channel 12, mac 04:42:1a:a2:fc:70
[14:11:47.326] [00:00:09.834,686] <dbg> location: scan_wifi_result_handle: scan result #6 stored: ssid Nordic_ASUS, channel 149, mac 04:42:1a:a2:fc:74
[14:11:47.336] [00:00:09.847,320] <dbg> location: scan_wifi_result_handle: scan result #7 stored: ssid Nordicsh, channel 161, mac 2c:97:b1:17:38:51
[14:11:47.357] [00:00:09.859,710] <dbg> location: scan_wifi_result_handle: scan result #8 stored: ssid HUAWEI-3840, channel 161, mac 2c:97:b1:17:38:50
[14:11:47.367] [00:00:09.872,375] <dbg> location: scan_wifi_result_handle: scan result #9 stored: ssid Nordicsh, channel 1, mac 2c:97:b1:17:38:41
[14:11:47.378] [00:00:09.884,552] <dbg> location: scan_wifi_result_handle: scan result #10 stored: ssid @Ruijie-mD790, channel 6, mac 80:05:88:aa:d7:93
[14:11:47.387] [00:00:09.897,277] <dbg> location: scan_wifi_result_handle: scan result #11 stored: ssid HUAWEI-3840, channel 1, mac 2c:97:b1:17:38:40
[14:11:47.408] [00:00:09.909,820] <dbg> location: scan_wifi_result_handle: scan result #12 stored: ssid lppshanghai, channel 6, mac d4:a2:3d:07:ce:48
[14:11:47.418] [00:00:09.922,393] <dbg> location: scan_wifi_result_handle: scan result #13 stored: ssid lppshanghai, channel 11, mac 10:19:65:c0:55:70
[14:11:47.428] [00:00:09.935,028] <dbg> location: scan_wifi_result_handle: scan result #14 stored: ssid TopSpeed5GCPE-7376, channel 12, mac fc:83:c6:12:f0:a2
[14:11:47.438] [00:00:09.948,242] <dbg> location: scan_wifi_result_handle: scan result #15 stored: ssid lppshanghai, channel 1, mac d4:a2:3d:07:c8:b8
[14:11:47.458] [00:00:09.960,815] <dbg> location: scan_wifi_result_handle: scan result #16 stored: ssid CU_8vNj, channel 9, mac ec:c0:1b:04:52:e8
[14:11:47.468] [00:00:09.973,052] <dbg> location: scan_wifi_result_handle: scan result #17 stored: ssid @Ruijie-mD790, channel 64, mac 80:05:88:aa:d7:94
[14:11:47.477] [00:00:09.985,839] <dbg> location: scan_wifi_result_handle: scan result #18 stored: ssid lppshanghai, channel 1, mac d4:a2:3d:07:c9:f8
[14:11:47.487] [00:00:09.998,382] <dbg> location: scan_wifi_result_handle: scan result #19 stored: ssid CU_8vNj_5G, channel 36, mac ec:c0:1b:04:52:ec
[14:11:47.506] [00:00:10.010,894] <dbg> location: scan_wifi_done_handle: Scan request done with 19 Wi-Fi APs
[14:11:47.518] [00:00:10.020,233] <dbg> location: cloud_service_location_get:  Cloud service location parameters Called from 0x20c01
[14:11:47.526] 
[14:11:47.526] [00:00:10.031,280] <dbg> location: cloud_service_location_get: Cloud service location parameters:
[14:11:47.538] [00:00:10.040,527] <dbg> location: cloud_service_location_get:   Timeout: 295092ms
[14:11:47.538] [00:00:10.048,492] <dbg> location: cloud_service_pos_get: Sending positioning request (REST)
[14:11:47.546] [00:00:10.161,071] <inf> nrf_cloud_info: Device ID: 504b5839-3738-417b-80b5-1128a55c27e3
[14:11:47.665] [00:00:10.169,982] <inf> nrf_cloud_info: IMEI:      350457790661761
[14:11:47.665] 
[14:11:47.778] [00:00:10.280,334] <inf> nrf_cloud_info: UUID:      504b5839-3738-417b-80b5-1128a55c27e3
[14:11:47.778] [00:00:10.289,093] <inf> nrf_cloud_info: Modem FW:  mfw_nrf9160_1.3.7
[14:11:47.787] [00:00:10.295,867] <inf> nrf_cloud_info: Protocol:          REST
[14:11:47.798] [00:00:10.302,246] <inf> nrf_cloud_info: Download protocol: HTTPS
[14:11:47.808] [00:00:10.308,746] <inf> nrf_cloud_info: Sec tag:           16842753
[14:11:47.808] [00:00:10.315,490] <inf> nrf_cloud_info: Host name:         api.nrfcloud.com
[14:11:47.811] 
[14:12:00.018] [00:00:22.524,871] <dbg> location: method_cloud_location_positioning_work_fn: location_core_event_cb enters
[14:12:00.027]  location_core_event_cb Called from 0x20c53
[14:12:00.027] [00:00:22.538,848] <dbg> location: location_core_event_cb: k_work_submit_to_queue calls location_event_cb_work
[14:12:00.048] [00:00:22.549,224] <dbg> location: location_core_event_cb_fn: Location acquired successfully:
[14:12:00.048] [00:00:22.558,105] <dbg> location: location_core_event_cb_fn:   method: Wi-Fi + Cellular (4)
[14:12:00.058] [00:00:22.567,047] <dbg> location: location_core_event_cb_fn:   latitude: 30.583116
[14:12:00.067] [00:00:22.575,195] <dbg> location: location_core_event_cb_fn:   longitude: 114.025898
[14:12:00.077] [00:00:22.583,465] <dbg> location: location_core_event_cb_fn:   accuracy: 777.0 m
[14:12:00.087] [00:00:22.591,308] <dbg> location: location_core_event_cb_fn:   date: 2025-07-23
[14:12:00.087] [00:00:22.599,090] <dbg> location: location_core_event_cb_fn:   time: 06:11:47.086 UTC
[14:12:00.098] [00:00:22.607,391] <dbg> location: location_core_event_cb_fn:   Google maps URL: https://maps.google.com/?q=30.583116,114.025898
[14:12:00.118] [00:00:22.619,323] <dbg> location: location_utils_event_dispatch: Dispatching event: type=1
[14:12:00.118] [00:00:22.628,051] <dbg> location: location_utils_event_dispatch:  - handler=0x0000BD39
[14:12:00.126]  Cloud service location parameters Called from 0x1f87b
[14:12:00.138] Got location:
[14:12:00.138]   method: Wi-Fi + Cellular
[14:12:00.138]   latitude: 30.583116
[14:12:00.138]   longitude: 114.025898
[14:12:00.138]   accuracy: 777.0 m
[14:12:00.147]   date: 2025-07-23
[14:12:00.147]   time: 06:11:47.086 UTC
[14:12:00.147]   Google maps URL: https://maps.google.com/?q=30.583116,114.025898
[14:12:00.156] 
[14:12:00.156] [00:00:22.661,010] <dbg> location: location_utils_event_dispatch: Done
[14:12:00.156] 
[14:12:15.913] +CSCON: 0
[14:12:15.913] 
[14:13:00.162] [00:01:22.668,029] <dbg> location: location_core_location_get_pos: Requesting location with 'Wi-Fi + Cellular' method
[14:13:00.178] [00:01:22.678,985] <dbg> location: location_core_location_get_pos: Starting request timer with timeout=300000
[14:13:00.178] [00:01:22.689,300] <dbg> location: scan_wifi_execute: Triggering start of Wi-Fi scanning
[14:13:00.184] [00:01:22.708,496] <dbg> location: scan_wifi_execute: Starting Wi-Fi timer with timeout=30000
[14:13:00.208] [00:01:22.718,994] <dbg> location: scan_cellular_execute: Triggering cell measurements timeout=30000, cell_count=4
[14:13:00.218] [00:01:22.729,675] <dbg> location: scan_cellular_execute: Starting cellular timer with timeout=30000
[14:13:00.227] [00:01:22.739,196] <dbg> location: scan_cellular_execute: Normal neighbor search (NCELLMEAS=1)
[14:13:00.235] 
[14:13:03.529] %NCELLMEAS: 0,"01832F1B","46000","5B12",65535,3684,404,61,19,85057,3684,168,62,20,0,3686,166,66,23,29,3686,403,64,20,29,3686,131,56,3,29,3688,402,65,23,96,0
[14:13:03.537] [00:01:26.051,086] <dbg> location: scan_cellular_lte_ind_handler: Cell measurements results received: ncells_count=5, gci_cells_count=0, current_cell.id=0x01832F1B
[14:13:03.558] [00:01:26.065,979] <dbg> location: scan_cellular_lte_ind_handler: No surrounding cell information from modem
[14:13:03.567] [00:01:26.076,324] <dbg> location: scan_cellular_execute: RRC already in idle mode
[14:13:03.577] [00:01:26.084,228] <dbg> location: scan_cellular_execute: GCI history search (NCELLMEAS=3,5)
[14:13:03.579] 
[14:13:04.427] [00:01:26.928,192] <dbg> location: scan_wifi_result_handle: scan result #1 stored: ssid Nordicsh, channel 6, mac 04:bd:70:6f:b9:41
[14:13:04.427] [00:01:26.940,490] <dbg> location: scan_wifi_result_handle: scan result #2 stored: ssid HUAWEI-B940, channel 165, mac 04:bd:70:6f:b9:50
[14:13:04.445] [00:01:26.953,125] <dbg> location: scan_wifi_result_handle: scan result #3 stored: ssid Nordicsh, channel 165, mac 04:bd:70:6f:b9:51
[14:13:04.457] [00:01:26.965,484] <dbg> location: scan_wifi_result_handle: scan result #4 stored: ssid Nordic_ASUS, channel 12, mac 04:42:1a:a2:fc:70
[14:13:04.467] [00:01:26.978,027] <dbg> location: scan_wifi_result_handle: scan result #5 stored: ssid Nordic_ASUS, channel 149, mac 04:42:1a:a2:fc:74
[14:13:04.488] [00:01:26.990,661] <dbg> location: scan_wifi_result_handle: scan result #6 stored: ssid HUAWEI-3840, channel 1, mac 2c:97:b1:17:38:40
[14:13:04.498] [00:01:27.003,143] <dbg> location: scan_wifi_result_handle: scan result #7 stored: ssid Nordicsh, channel 1, mac 2c:97:b1:17:38:41
[14:13:04.508] [00:01:27.015,319] <dbg> location: scan_wifi_result_handle: scan result #8 stored: ssid HUAWEI-3840, channel 161, mac 2c:97:b1:17:38:50
[14:13:04.517] [00:01:27.027,984] <dbg> location: scan_wifi_result_handle: scan result #9 stored: ssid Nordicsh, channel 161, mac 2c:97:b1:17:38:51
[14:13:04.527] [00:01:27.040,344] <dbg> location: scan_wifi_result_handle: scan result #10 stored: ssid lppshanghai, channel 11, mac 10:19:65:c0:55:70
[14:13:04.546] [00:01:27.052,978] <dbg> location: scan_wifi_result_handle: scan result #11 stored: ssid @Ruijie-mD790, channel 6, mac 80:05:88:aa:d7:93
[14:13:04.558] [00:01:27.065,704] <dbg> location: scan_wifi_result_handle: scan result #12 stored: ssid lppshanghai, channel 6, mac d4:a2:3d:07:ce:48
[14:13:04.568] [00:01:27.078,247] <dbg> location: scan_wifi_result_handle: scan result #13 stored: ssid CU_8vNj, channel 9, mac ec:c0:1b:04:52:e8
[14:13:04.577] [00:01:27.090,423] <dbg> location: scan_wifi_result_handle: scan result #14 stored: ssid ChinaNet-qRsU, channel 10, mac cc:c2:e0:ae:d7:55
[14:13:04.597] [00:01:27.103,240] <dbg> location: scan_wifi_result_handle: scan result #15 stored: ssid @Ruijie-mD790, channel 64, mac 80:05:88:aa:d7:94
[14:13:04.608] [00:01:27.116,058] <dbg> location: scan_wifi_result_handle: scan result #16 stored: ssid SUMG23, channel 11, mac 4c:10:d5:82:63:51
[14:13:04.618] [00:01:27.128,295] <dbg> location: scan_wifi_result_handle: scan result #17 stored: ssid lppshanghai, channel 1, mac d4:a2:3d:07:c8:b8
[14:13:04.628] [00:01:27.140,838] <dbg> location: scan_wifi_result_handle: scan result #18 stored: ssid CU_8vNj_5G, channel 36, mac ec:c0:1b:04:52:ec
[14:13:04.649] [00:01:27.153,381] <dbg> location: scan_wifi_result_handle: scan result #19 stored: ssid ChinaNet-2RtR, channel 4, mac 88:c1:74:7f:1d:54
[14:13:04.657] [00:01:27.166,076] <dbg> location: scan_wifi_result_handle: scan result #20 stored: ssid TopSpeed5GCPE-2460, channel 7, mac fc:83:c6:12:65:7a
[14:13:04.666] [00:01:27.179,199] <dbg> location: scan_wifi_done_handle: Scan request done with 20 Wi-Fi APs
[14:13:04.674] %NCELLMEAS: 0,"0183761A","46000","5B12",65535,0,3684,168,62,20,86382,0,0,"01832F1B","46000","5B12",65535,0,3684,404,61,19,86382,0,0,"0193CC1B","46000","5B12",65535,0,3684,357,53,1,86382,0,0
[14:13:04.749] [00:01:27.254,425] <dbg> location: scan_cellular_lte_ind_handler: Cell measurements results received: ncells_count=0, gci_cells_count=3, current_cell.id=0xFFFFFFFF
[14:13:04.757] [00:01:27.269,348] <dbg> location: scan_cellular_lte_ind_handler: No neighbor cell information from modem
[14:13:04.765] [00:01:27.286,071] <dbg> location: cloud_service_location_get:  Cloud service location parameters Called from 0x20c01
[14:13:04.788] 
[14:13:04.788] [00:01:27.297,088] <dbg> location: cloud_service_location_get: Cloud service location parameters:
[14:13:04.797] [00:01:27.306,335] <dbg> location: cloud_service_location_get:   Timeout: 295381ms
[14:13:04.806] [00:01:27.314,300] <dbg> location: cloud_service_pos_get: Sending positioning request (REST)
[14:13:04.810] 
[14:13:04.928] !print_value(item, buffer)
[14:13:04.928] [00:01:27.436,981] <err> nrf_cloud_rest: Failed to encode location request, err: -12
[14:13:04.937] [00:01:27.446,807] <err> location: Failed to acquire location using cloud location, error: -12
[14:13:04.947]  location_core_event_cb Called from 0x20b2f
[14:13:04.947] [00:01:27.459,899] <dbg> location: location_core_event_cb: k_work_submit_to_queue calls location_event_cb_work
[14:13:04.968] [00:01:27.470,275] <err> location: Location acquisition failed and fallbacks are also done
[14:13:04.968] [00:01:27.479,187] <dbg> location: location_utils_event_dispatch: Dispatching event: type=3
[14:13:04.977] [00:01:27.487,884] <dbg> location: location_utils_event_dispatch:  - handler=0x0000BD39
[14:13:04.990]  Cloud service location parameters Called from 0x1f87b
[14:13:04.997] Getting location failed
[14:13:04.997] 
[14:13:04.997] [00:01:27.503,448] <dbg> location: location_utils_event_dispatch: Done
[14:13:04.998] 
[14:14:04.998] [00:02:27.510,467] <dbg> location: location_core_location_get_pos: Requesting location with 'Wi-Fi + Cellular' method
[14:14:05.006] [00:02:27.521,423] <dbg> location: location_core_location_get_pos: Starting request timer with timeout=300000
[14:14:05.018] [00:02:27.531,738] <dbg> location: scan_wifi_execute: Triggering start of Wi-Fi scanning
[14:14:05.024] [00:02:27.550,476] <dbg> location: scan_wifi_execute: Starting Wi-Fi timer with timeout=30000
[14:14:05.048] [00:02:27.560,882] <dbg> location: scan_cellular_execute: Triggering cell measurements timeout=30000, cell_count=4
[14:14:05.058] [00:02:27.571,594] <dbg> location: scan_cellular_execute: Starting cellular timer with timeout=30000
[14:14:05.068] [00:02:27.581,115] <dbg> location: scan_cellular_execute: Normal neighbor search (NCELLMEAS=1)
[14:14:05.074] 
[14:14:07.466] %NCELLMEAS: 0,"01832F1B","46000","5B12",65535,3684,404,61,20,149057,3684,168,59,15,0,3684,357,51,-3,0,3686,403,65,25,30,3686,166,58,11,30,3686,131,52,-2,30,3688,402,64,21,67,3688,167,52,-3,67,0
[14:14:07.488] [00:02:29.998,962] <dbg> location: scan_cellular_lte_ind_handler: Cell measurements results received: ncells_count=7, gci_cells_count=0, current_cell.id=0x01832F1B
[14:14:07.506] [00:02:30.013,885] <dbg> location: scan_cellular_lte_ind_handler: No surrounding cell information from modem
[14:14:07.518] [00:02:30.024,230] <dbg> location: scan_cellular_execute: RRC already in idle mode
[14:14:07.518] [00:02:30.032,135] <dbg> location: scan_cellular_execute: GCI history search (NCELLMEAS=3,5)
[14:14:07.525] 
[14:14:09.067] %NCELLMEAS: 0,"0183761A","46000","5B12",65535,0,3684,168,60,15,150683,0,0,"01832F1B","46000","5B12",65535,0,3684,404,62,19,150683,0,0,"0193CC1B","46000","5B12",65535,0,3684,357,53,1,150683,0,0,"01832F1A","46000","5B12",65535,0,3688,402,65,22,150720,0,0
[14:14:09.087] [00:02:31.598,266] <dbg> location: scan_cellular_lte_ind_handler: Cell measurements results received: ncells_count=0, gci_cells_count=4, current_cell.id=0xFFFFFFFF
[14:14:09.107] [00:02:31.613,189] <dbg> location: scan_cellular_lte_ind_handler: No neighbor cell information from modem
[14:14:09.109] [00:02:31.772,338] <dbg> location: scan_wifi_result_handle: scan result #1 stored: ssid Nordicsh, channel 6, mac 04:bd:70:6f:b9:41
[14:14:09.278] [00:02:31.784,637] <dbg> location: scan_wifi_result_handle: scan result #2 stored: ssid HUAWEI-B940, channel 6, mac 04:bd:70:6f:b9:40
[14:14:09.288] [00:02:31.797,119] <dbg> location: scan_wifi_result_handle: scan result #3 stored: ssid Nordicsh, channel 165, mac 04:bd:70:6f:b9:51
[14:14:09.298] [00:02:31.809,478] <dbg> location: scan_wifi_result_handle: scan result #4 stored: ssid Nordic_ASUS, channel 12, mac 04:42:1a:a2:fc:70
[14:14:09.307] [00:02:31.822,021] <dbg> location: scan_wifi_result_handle: scan result #5 stored: ssid HUAWEI-B940, channel 165, mac 04:bd:70:6f:b9:50
[14:14:09.328] [00:02:31.834,655] <dbg> location: scan_wifi_result_handle: scan result #6 stored: ssid Nordic_ASUS, channel 149, mac 04:42:1a:a2:fc:74
[14:14:09.338] [00:02:31.847,320] <dbg> location: scan_wifi_result_handle: scan result #7 stored: ssid HUAWEI-3840, channel 161, mac 2c:97:b1:17:38:50
[14:14:09.348] [00:02:31.859,954] <dbg> location: scan_wifi_result_handle: scan result #8 stored: ssid Nordicsh, channel 161, mac 2c:97:b1:17:38:51
[14:14:09.357] [00:02:31.872,375] <dbg> location: scan_wifi_result_handle: scan result #9 stored: ssid lppshanghai, channel 11, mac 10:19:65:c0:55:70
[14:14:09.377] [00:02:31.884,918] <dbg> location: scan_wifi_result_handle: scan result #10 stored: ssid lppshanghai, channel 6, mac d4:a2:3d:07:ce:48
[14:14:09.387] [00:02:31.897,460] <dbg> location: scan_wifi_result_handle: scan result #11 stored: ssid @Ruijie-mD790, channel 64, mac 80:05:88:aa:d7:94
[14:14:09.397] [00:02:31.910,278] <dbg> location: scan_wifi_result_handle: scan result #12 stored: ssid CU_8vNj, channel 9, mac ec:c0:1b:04:52:e8
[14:14:09.418] [00:02:31.922,454] <dbg> location: scan_wifi_result_handle: scan result #13 stored: ssid CU_8vNj_5G, channel 36, mac ec:c0:1b:04:52:ec
[14:14:09.428] [00:02:31.935,028] <dbg> location: scan_wifi_result_handle: scan result #14 stored: ssid ChinaNet-qRsU, channel 10, mac cc:c2:e0:ae:d7:55
[14:14:09.437] [00:02:31.947,753] <dbg> location: scan_wifi_done_handle: Scan request done with 14 Wi-Fi APs
[14:14:09.440] [00:02:31.965,576] <dbg> location: cloud_service_location_get:  Cloud service location parameters Called from 0x20c01
[14:14:09.468] 
[14:14:09.468] [00:02:31.976,593] <dbg> location: cloud_service_location_get: Cloud service location parameters:
[14:14:09.477] [00:02:31.985,839] <dbg> location: cloud_service_location_get:   Timeout: 295545ms
[14:14:09.487] [00:02:31.993,835] <dbg> location: cloud_service_pos_get: Sending positioning request (REST)
[14:14:09.487] 
[14:14:09.608] !print_value(item, buffer)
[14:14:09.608] [00:02:32.121,459] <err> nrf_cloud_rest: Failed to encode location request, err: -12
[14:14:09.617] [00:02:32.131,256] <err> location: Failed to acquire location using cloud location, error: -12
[14:14:09.628]  location_core_event_cb Called from 0x20b2f
[14:14:09.637] [00:02:32.144,348] <dbg> location: location_core_event_cb: k_work_submit_to_queue calls location_event_cb_work
[14:14:09.647] [00:02:32.154,754] <err> location: Location acquisition failed and fallbacks are also done
[14:14:09.658] [00:02:32.163,635] <dbg> location: location_utils_event_dispatch: Dispatching event: type=3
[14:14:09.658] [00:02:32.172,363] <dbg> location: location_utils_event_dispatch:  - handler=0x0000BD39
[14:14:09.668]  Cloud service location parameters Called from 0x1f87b
[14:14:09.678] Getting location failed
[14:14:09.678] 
[14:14:09.678] [00:02:32.187,927] <dbg> location: location_utils_event_dispatch: Done
[14:14:09.681] 
[14:15:09.689] [00:03:32.194,946] <dbg> location: location_core_location_get_pos: Requesting location with 'Wi-Fi + Cellular' method
[14:15:09.707] [00:03:32.205,902] <dbg> location: location_core_location_get_pos: Starting request timer with timeout=300000
[14:15:09.707] [00:03:32.216,217] <dbg> location: scan_wifi_execute: Triggering start of Wi-Fi scanning
[14:15:09.719] [00:03:32.235,473] <dbg> location: scan_wifi_execute: Starting Wi-Fi timer with timeout=30000
[14:15:09.735] [00:03:32.245,880] <dbg> location: scan_cellular_execute: Triggering cell measurements timeout=30000, cell_count=4
[14:15:09.752] [00:03:32.256,561] <dbg> location: scan_cellular_execute: Starting cellular timer with timeout=30000
[14:15:09.752] [00:03:32.266,082] <dbg> location: scan_cellular_execute: Normal neighbor search (NCELLMEAS=1)
[14:15:09.758] 
[14:15:11.478] %NCELLMEAS: 0,"0183761A","46000","5B12",65535,3684,168,58,16,213057,3684,404,59,18,0,3684,461,51,3,0,3686,403,60,21,30,3686,166,59,20,30,3688,402,63,25,68,3688,274,50,-2,68,0
[14:15:11.493] [00:03:34.001,068] <dbg> location: scan_cellular_lte_ind_handler: Cell measurements results received: ncells_count=6, gci_cells_count=0, current_cell.id=0x0183761A
[14:15:11.507] [00:03:34.015,991] <dbg> location: scan_cellular_lte_ind_handler: No surrounding cell information from modem
[14:15:11.523] [00:03:34.026,336] <dbg> location: scan_cellular_execute: RRC already in idle mode
[14:15:11.523] [00:03:34.034,240] <dbg> location: scan_cellular_execute: GCI history search (NCELLMEAS=3,5)
[14:15:11.527] 
[14:15:12.439] %NCELLMEAS: 0,"0183761A","46000","5B12",65535,0,3684,168,58,19,214045,0,0,"01832F1A","46000","5B12",65535,0,3688,402,62,23,214084,0,0
[14:15:12.439] [00:03:34.954,132] <dbg> location: scan_cellular_lte_ind_handler: Cell measurements results received: ncells_count=0, gci_cells_count=2, current_cell.id=0xFFFFFFFF
[14:15:12.455] [00:03:34.969,024] <dbg> location: scan_cellular_lte_ind_handler: No neighbor cell information from modem
[14:15:12.470] [00:03:34.979,125] <dbg> location: scan_cellular_execute: GCI regional search (NCELLMEAS=4,4)
[14:15:12.470] 
[14:15:13.950] [00:03:36.455,596] <dbg> location: scan_wifi_result_handle: scan result #1 stored: ssid Nordicsh, channel 165, mac 04:bd:70:6f:b9:51
[14:15:13.964] [00:03:36.468,078] <dbg> location: scan_wifi_result_handle: scan result #2 stored: ssid HUAWEI-B940, channel 165, mac 04:bd:70:6f:b9:50
[14:15:13.964] [00:03:36.480,682] <dbg> location: scan_wifi_result_handle: scan result #3 stored: ssid Nordic_ASUS, channel 149, mac 04:42:1a:a2:fc:74
[14:15:13.979] [00:03:36.493,316] <dbg> location: scan_wifi_result_handle: scan result #4 stored: ssid Nordic_ASUS, channel 12, mac 04:42:1a:a2:fc:70
[14:15:13.997] [00:03:36.505,859] <dbg> location: scan_wifi_result_handle: scan result #5 stored: ssid HUAWEI-3840, channel 1, mac 2c:97:b1:17:38:40
[14:15:14.012] [00:03:36.518,310] <dbg> location: scan_wifi_result_handle: scan result #6 stored: ssid Nordicsh, channel 161, mac 2c:97:b1:17:38:51
[14:15:14.029] [00:03:36.530,670] <dbg> location: scan_wifi_result_handle: scan result #7 stored: ssid HUAWEI-3840, channel 161, mac 2c:97:b1:17:38:50
[14:15:14.029] [00:03:36.543,304] <dbg> location: scan_wifi_result_handle: scan result #8 stored: ssid lppshanghai, channel 11, mac 10:19:65:c0:55:70
[14:15:14.045] [00:03:36.555,908] <dbg> location: scan_wifi_result_handle: scan result #9 stored: ssid lppshanghai, channel 6, mac d4:a2:3d:07:ce:48
[14:15:14.058] [00:03:36.568,359] <dbg> location: scan_wifi_result_handle: scan result #10 stored: ssid @Ruijie-mD790, channel 6, mac 80:05:88:aa:d7:93
[14:15:14.075] [00:03:36.581,085] <dbg> location: scan_wifi_result_handle: scan result #11 stored: ssid garces, channel 1, mac ec:60:73:c5:d1:f6
[14:15:14.089] [00:03:36.593,200] <dbg> location: scan_wifi_result_handle: scan result #12 stored: ssid CU_8vNj_5G, channel 36, mac ec:c0:1b:04:52:ec
[14:15:14.089] [00:03:36.605,743] <dbg> location: scan_wifi_result_handle: scan result #13 stored: ssid @Ruijie-mD790, channel 64, mac 80:05:88:aa:d7:94
[14:15:14.105] [00:03:36.618,499] <dbg> location: scan_wifi_done_handle: Scan request done with 13 Wi-Fi APs
[14:15:14.113] %NCELLMEAS: 0,"0183761A","46000","5B12",65535,0,3684,168,56,15,215965,0,0,"01832F1B","46000","5B12",65535,0,3684,404,56,14,215965,0,0,"01A61C1A","46000","5B15",65535,0,3684,174,49,-1,215965,0,0,"01832F1A","46000","5B12",65535,0,3688,402,63,25,216003,0,0
[14:15:14.374] [00:03:36.884,613] <dbg> location: scan_cellular_lte_ind_handler: Cell measurements results received: ncells_count=0, gci_cells_count=4, current_cell.id=0xFFFFFFFF
[14:15:14.388] [00:03:36.899,505] <dbg> location: scan_cellular_lte_ind_handler: No neighbor cell information from modem
[14:15:14.402] [00:03:36.916,259] <dbg> location: cloud_service_location_get:  Cloud service location parameters Called from 0x20c01
[14:15:14.420] 
[14:15:14.420] [00:03:36.927,276] <dbg> location: cloud_service_location_get: Cloud service location parameters:
[14:15:14.433] [00:03:36.936,523] <dbg> location: cloud_service_location_get:   Timeout: 295278ms
[14:15:14.433] [00:03:36.944,458] <dbg> location: cloud_service_pos_get: Sending positioning request (REST)
[14:15:14.437] 
[14:15:16.015] +CSCON: 1
[14:15:16.015] 
[14:15:19.810] [00:03:42.299,621] <dbg> location: method_cloud_location_positioning_work_fn: location_core_event_cb enters
[14:15:19.810]  location_core_event_cb Called from 0x20c53
[14:15:19.810] [00:03:42.313,568] <dbg> location: location_core_event_cb: k_work_submit_to_queue calls location_event_cb_work
[14:15:19.810] [00:03:42.323,944] <dbg> location: location_core_event_cb_fn: Location acquired successfully:
[14:15:19.826] [00:03:42.332,855] <dbg> location: location_core_event_cb_fn:   method: Wi-Fi + Cellular (4)
[14:15:19.826] [00:03:42.341,766] <dbg> location: location_core_event_cb_fn:   latitude: 30.646244
[14:15:19.858] [00:03:42.349,914] <dbg> location: location_core_event_cb_fn:   longitude: 114.318838
[14:15:19.858] [00:03:42.358,184] <dbg> location: location_core_event_cb_fn:   accuracy: 286.0 m
[14:15:19.858] [00:03:42.365,997] <dbg> location: location_core_event_cb_fn:   date: 2025-07-23
[14:15:19.874] [00:03:42.373,779] <dbg> location: location_core_event_cb_fn:   time: 06:15:13.982 UTC
[14:15:19.874] [00:03:42.382,080] <dbg> location: location_core_event_cb_fn:   Google maps URL: https://maps.google.com/?q=30.646244,114.318838
[14:15:19.888] [00:03:42.393,981] <dbg> location: location_utils_event_dispatch: Dispatching event: type=1
[14:15:19.888] [00:03:42.402,709] <dbg> location: location_utils_event_dispatch:  - handler=0x0000BD39
[14:15:19.904]  Cloud service location parameters Called from 0x1f87b
[14:15:19.904] Got location:
[14:15:19.904]   method: Wi-Fi + Cellular
[14:15:19.917]   latitude: 30.646244
[14:15:19.917]   longitude: 114.318838
[14:15:19.917]   accuracy: 286.0 m
[14:15:19.917]   date: 2025-07-23
[14:15:19.917]   time: 06:15:13.982 UTC
[14:15:19.917]   Google maps URL: https://maps.google.com/?q=30.646244,114.318838
[14:15:19.925] 
[14:15:19.925] [00:03:42.435,638] <dbg> location: location_utils_event_dispatch: Done
[14:15:19.925] 
[14:15:35.969] +CSCON: 0
[14:15:35.969] +CEREG: 1,"5B12","01832F1B",9,,,"00000100","01011111"
[14:15:36.282] 
[14:16:19.941] [00:04:42.442,657] <dbg> location: location_core_location_get_pos: Requesting location with 'Wi-Fi + Cellular' method
[14:16:19.941] [00:04:42.453,613] <dbg> location: location_core_location_get_pos: Starting request timer with timeout=300000
[14:16:19.952] [00:04:42.463,897] <dbg> location: scan_wifi_execute: Triggering start of Wi-Fi scanning
[14:16:19.969] [00:04:42.483,489] <dbg> location: scan_wifi_execute: Starting Wi-Fi timer with timeout=30000
[14:16:19.983] [00:04:42.493,988] <dbg> location: scan_cellular_execute: Triggering cell measurements timeout=30000, cell_count=4
[14:16:19.999] [00:04:42.504,669] <dbg> location: scan_cellular_execute: Starting cellular timer with timeout=30000
[14:16:19.999] [00:04:42.514,190] <dbg> location: scan_cellular_execute: Normal neighbor search (NCELLMEAS=1)
[14:16:20.004] 
[14:16:24.200] [00:04:46.704,864] <dbg> location: scan_wifi_result_handle: scan result #1 stored: ssid Nordicsh, channel 165, mac 04:bd:70:6f:b9:51
[14:16:24.200] [00:04:46.717,346] <dbg> location: scan_wifi_result_handle: scan result #2 stored: ssid HUAWEI-B940, channel 165, mac 04:bd:70:6f:b9:50
[14:16:24.217] [00:04:46.729,949] <dbg> location: scan_wifi_result_handle: scan result #3 stored: ssid Nordic_ASUS, channel 149, mac 04:42:1a:a2:fc:74
[14:16:24.231] [00:04:46.742,584] <dbg> location: scan_wifi_result_handle: scan result #4 stored: ssid Nordic_ASUS, channel 12, mac 04:42:1a:a2:fc:70
[14:16:24.247] [00:04:46.755,126] <dbg> location: scan_wifi_result_handle: scan result #5 stored: ssid HUAWEI-3840, channel 1, mac 2c:97:b1:17:38:40
[14:16:24.261] [00:04:46.767,578] <dbg> location: scan_wifi_result_handle: scan result #6 stored: ssid Nordicsh, channel 1, mac 2c:97:b1:17:38:41
[14:16:24.261] [00:04:46.779,754] <dbg> location: scan_wifi_result_handle: scan result #7 stored: ssid Nordicsh, channel 161, mac 2c:97:b1:17:38:51
[14:16:24.277] [00:04:46.792,144] <dbg> location: scan_wifi_result_handle: scan result #8 stored: ssid HUAWEI-3840, channel 161, mac 2c:97:b1:17:38:50
[14:16:24.292] [00:04:46.804,809] <dbg> location: scan_wifi_result_handle: scan result #9 stored: ssid lppshanghai, channel 11, mac 10:19:65:c0:55:70
[14:16:24.308] [00:04:46.817,352] <dbg> location: scan_wifi_result_handle: scan result #10 stored: ssid lppshanghai, channel 6, mac d4:a2:3d:07:ce:48
[14:16:24.324] [00:04:46.829,895] <dbg> location: scan_wifi_result_handle: scan result #11 stored: ssid lppshanghai, channel 1, mac d4:a2:3d:07:c8:b8
[14:16:24.324] [00:04:46.842,407] <dbg> location: scan_wifi_result_handle: scan result #12 stored: ssid CU_8vNj_5G, channel 36, mac ec:c0:1b:04:52:ec
[14:16:24.341] [00:04:46.854,949] <dbg> location: scan_wifi_result_handle: scan result #13 stored: ssid @Ruijie-mD790, channel 64, mac 80:05:88:aa:d7:94
[14:16:24.355] [00:04:46.867,767] <dbg> location: scan_wifi_result_handle: scan result #14 stored: ssid WiFi_CCAB200_1983R, channel 11, mac 70:3a:2d:50:7e:f4
[14:16:24.372] [00:04:46.880,950] <dbg> location: scan_wifi_done_handle: Scan request done with 14 Wi-Fi APs
[14:16:24.372] 
[14:16:30.999] %NCELLMEAS: 0,"0193CC1B","46000","5B12",65535,3684,357,52,6,292488,3684,404,57,16,0,3684,284,53,8,0,3684,152,48,-3,0,3686,403,62,25,67,3686,166,56,13,67,3688,402,63,23,133,0
[14:16:31.016] [00:04:53.526,397] <dbg> location: scan_cellular_lte_ind_handler: Cell measurements results received: ncells_count=6, gci_cells_count=0, current_cell.id=0x0193CC1B
[14:16:31.031] [00:04:53.541,320] <dbg> location: scan_cellular_lte_ind_handler: No surrounding cell information from modem
[14:16:31.047] [00:04:53.551,666] <dbg> location: scan_cellular_execute: RRC already in idle mode
[14:16:31.047] [00:04:53.559,570] <dbg> location: scan_cellular_execute: GCI history search (NCELLMEAS=3,5)
[14:16:31.050] 
[14:16:32.407] %NCELLMEAS: 0,"01832F1B","46000","5B12",65535,0,3684,404,52,9,294062,0,0,"0183761A","46000","5B12",65535,0,3684,168,52,9,294062,0,0,"0193CC1B","46000","5B12",65535,0,3684,357,52,10,294062,0,0
[14:16:32.420] [00:04:54.940,551] <dbg> location: scan_cellular_lte_ind_handler: Cell measurements results received: ncells_count=0, gci_cells_count=3, current_cell.id=0xFFFFFFFF
[14:16:32.436] [00:04:54.955,444] <dbg> location: scan_cellular_lte_ind_handler: No neighbor cell information from modem
[14:16:32.446] [00:04:54.972,167] <dbg> location: cloud_service_location_get:  Cloud service location parameters Called from 0x20c01
[14:16:32.467] 
[14:16:32.467] [00:04:54.983,184] <dbg> location: cloud_service_location_get: Cloud service location parameters:
[14:16:32.486] [00:04:54.992,431] <dbg> location: cloud_service_location_get:   Timeout: 287470ms
[14:16:32.486] [00:04:55.000,366] <dbg> location: cloud_service_pos_get: Sending positioning request (REST)
[14:16:32.490] 
[14:16:32.929] +CEREG: 1,"5B12","0193CC1B",9,,,"00000100","01011111"
[14:16:32.929] 
[14:16:33.843] +CSCON: 1
[14:16:33.847] 
[14:17:03.545] [00:05:26.048,919] <dbg> location: method_cloud_location_positioning_work_fn: location_core_event_cb enters
[14:17:03.545]  location_core_event_cb Called from 0x20c53
[14:17:03.545] [00:05:26.062,866] <dbg> location: location_core_event_cb: k_work_submit_to_queue calls location_event_cb_work
[14:17:03.560] [00:05:26.073,272] <dbg> location: location_core_event_cb_fn: Location acquired successfully:
[14:17:03.575] [00:05:26.082,153] <dbg> location: location_core_event_cb_fn:   method: Wi-Fi + Cellular (4)
[14:17:03.575] [00:05:26.091,094] <dbg> location: location_core_event_cb_fn:   latitude: 30.475624
[14:17:03.591] [00:05:26.099,212] <dbg> location: location_core_event_cb_fn:   longitude: 114.288583
[14:17:03.591] [00:05:26.107,482] <dbg> location: location_core_event_cb_fn:   accuracy: 286.0 m
[14:17:03.607] [00:05:26.115,295] <dbg> location: location_core_event_cb_fn:   date: 2025-07-23
[14:17:03.607] [00:05:26.123,077] <dbg> location: location_core_event_cb_fn:   time: 06:16:32.038 UTC
[14:17:03.623] [00:05:26.131,378] <dbg> location: location_core_event_cb_fn:   Google maps URL: https://maps.google.com/?q=30.475624,114.288583
[14:17:03.638] [00:05:26.143,280] <dbg> location: location_utils_event_dispatch: Dispatching event: type=1
[14:17:03.638] [00:05:26.152,008] <dbg> location: location_utils_event_dispatch:  - handler=0x0000BD39
[14:17:03.654]  Cloud service location parameters Called from 0x1f87b
[14:17:03.654] Got location:
[14:17:03.654]   method: Wi-Fi + Cellular
[14:17:03.654]   latitude: 30.475624
[14:17:03.654]   longitude: 114.288583
[14:17:03.654]   accuracy: 286.0 m
[14:17:03.671]   date: 2025-07-23
[14:17:03.671]   time: 06:16:32.038 UTC
[14:17:03.671]   Google maps URL: https://maps.google.com/?q=30.475624,114.288583
[14:17:03.671] 
[14:17:03.671] [00:05:26.184,936] <dbg> location: location_utils_event_dispatch: Done
[14:17:03.674] 
[14:17:19.920] +CSCON: 0
[14:17:19.920] +CEREG: 1,"5B12","01832F1B",9,,,"00000100","01011111"
[14:17:20.278] 
[14:18:03.680] [00:06:26.191,955] <dbg> location: location_core_location_get_pos: Requesting location with 'Wi-Fi + Cellular' method
[14:18:03.694] [00:06:26.202,911] <dbg> location: location_core_location_get_pos: Starting request timer with timeout=300000
[14:18:03.694] [00:06:26.213,195] <dbg> location: scan_wifi_execute: Triggering start of Wi-Fi scanning
[14:18:03.699] [00:06:26.232,482] <dbg> location: scan_wifi_execute: Starting Wi-Fi timer with timeout=30000
[14:18:03.727] [00:06:26.242,889] <dbg> location: scan_cellular_execute: Triggering cell measurements timeout=30000, cell_count=4
[14:18:03.743] [00:06:26.253,601] <dbg> location: scan_cellular_execute: Starting cellular timer with timeout=30000
[14:18:03.743] [00:06:26.263,092] <dbg> location: scan_cellular_execute: Normal neighbor search (NCELLMEAS=1)
[14:18:03.750] 
[14:18:07.857] [00:06:30.375,122] <dbg> location: scan_wifi_result_handle: scan result #1 stored: ssid Nordicsh, channel 6, mac 04:bd:70:6f:b9:41
[14:18:07.874] [00:06:30.387,420] <dbg> location: scan_wifi_result_handle: scan result #2 stored: ssid HUAWEI-B940, channel 6, mac 04:bd:70:6f:b9:40
[14:18:07.888] [00:06:30.399,871] <dbg> location: scan_wifi_result_handle: scan result #3 stored: ssid Nordic_ASUS, channel 149, mac 04:42:1a:a2:fc:74
[14:18:07.904] [00:06:30.412,506] <dbg> location: scan_wifi_result_handle: scan result #4 stored: ssid Nordicsh, channel 165, mac 04:bd:70:6f:b9:51
[14:18:07.904] [00:06:30.424,896] <dbg> location: scan_wifi_result_handle: scan result #5 stored: ssid HUAWEI-B940, channel 165, mac 04:bd:70:6f:b9:50
[14:18:07.920] [00:06:30.437,530] <dbg> location: scan_wifi_result_handle: scan result #6 stored: ssid Nordic_ASUS, channel 12, mac 04:42:1a:a2:fc:70
[14:18:07.936] [00:06:30.450,073] <dbg> location: scan_wifi_result_handle: scan result #7 stored: ssid lppshanghai, channel 11, mac 10:19:65:c0:55:70
[14:18:07.951] [00:06:30.462,615] <dbg> location: scan_wifi_result_handle: scan result #8 stored: ssid @Ruijie-mD790, channel 6, mac 80:05:88:aa:d7:93
[14:18:07.968] [00:06:30.475,280] <dbg> location: scan_wifi_result_handle: scan result #9 stored: ssid Nordicsh, channel 161, mac 2c:97:b1:17:38:51
[14:18:07.968] [00:06:30.487,670] <dbg> location: scan_wifi_result_handle: scan result #10 stored: ssid HUAWEI-3840, channel 161, mac 2c:97:b1:17:38:50
[14:18:07.981] [00:06:30.500,396] <dbg> location: scan_wifi_result_handle: scan result #11 stored: ssid lppshanghai, channel 1, mac d4:a2:3d:07:c8:b8
[14:18:07.997] [00:06:30.512,939] <dbg> location: scan_wifi_result_handle: scan result #12 stored: ssid CU_8vNj_5G, channel 36, mac ec:c0:1b:04:52:ec
[14:18:08.012] [00:06:30.525,482] <dbg> location: scan_wifi_result_handle: scan result #13 stored: ssid @Ruijie-mD790, channel 64, mac 80:05:88:aa:d7:94
[14:18:08.029] [00:06:30.538,269] <dbg> location: scan_wifi_result_handle: scan result #14 stored: ssid garces, channel 1, mac ec:60:73:c5:d1:f6
[14:18:08.043] [00:06:30.550,384] <dbg> location: scan_wifi_result_handle: scan result #15 stored: ssid TopSpeed5GCPE-7376, channel 12, mac fc:83:c6:12:f0:a2
[14:18:08.043] [00:06:30.563,568] <dbg> location: scan_wifi_done_handle: Scan request done with 15 Wi-Fi APs
[14:18:08.050] 
[14:18:10.690] %NCELLMEAS: 0,"0183761A","46000","5B12",65535,3684,168,61,18,392267,3684,404,63,22,0,3684,278,50,-3,0,3684,152,44,-15,0,3686,403,61,20,30,3686,166,59,16,30,3686,131,56,10,30,3688,402,66,25,69,0
[14:18:10.707] [00:06:33.218,963] <dbg> location: scan_cellular_lte_ind_handler: Cell measurements results received: ncells_count=7, gci_cells_count=0, current_cell.id=0x0183761A
[14:18:10.721] [00:06:33.233,886] <dbg> location: scan_cellular_lte_ind_handler: No surrounding cell information from modem
[14:18:10.737] [00:06:33.244,232] <dbg> location: scan_cellular_execute: RRC already in idle mode
[14:18:10.737] [00:06:33.252,136] <dbg> location: scan_cellular_execute: GCI history search (NCELLMEAS=3,5)
[14:18:10.740] 
[14:18:11.951] %NCELLMEAS: 0,"01832F1B","46000","5B12",65535,0,3684,404,62,20,393565,0,0,"0183761A","46000","5B12",65535,0,3684,168,62,20,393565,0,0,"01832F1A","46000","5B12",65535,0,3688,402,66,25,393603,0,0
[14:18:11.967] [00:06:34.484,405] <dbg> location: scan_cellular_lte_ind_handler: Cell measurements results received: ncells_count=0, gci_cells_count=3, current_cell.id=0xFFFFFFFF
[14:18:11.982] [00:06:34.499,328] <dbg> location: scan_cellular_lte_ind_handler: No neighbor cell information from modem
[14:18:12.001] [00:06:34.516,052] <dbg> location: cloud_service_location_get:  Cloud service location parameters Called from 0x20c01
[14:18:12.013] 
[14:18:12.013] [00:06:34.527,069] <dbg> location: cloud_service_location_get: Cloud service location parameters:
[14:18:12.029] [00:06:34.536,315] <dbg> location: cloud_service_location_get:   Timeout: 291675ms
[14:18:12.029] [00:06:34.544,281] <dbg> location: cloud_service_pos_get: Sending positioning request (REST)
[14:18:12.031] 
[14:18:15.117] +CSCON: 1
[14:18:15.117] 
[14:18:23.690] [00:06:46.200,531] <dbg> location: method_cloud_location_positioning_work_fn: location_core_event_cb enters
[14:18:23.690]  location_core_event_cb Called from 0x20c53
[14:18:23.705] [00:06:46.214,477] <dbg> location: location_core_event_cb: k_work_submit_to_queue calls location_event_cb_work
[14:18:23.705] [00:06:46.224,884] <dbg> location: location_core_event_cb_fn: Location acquired successfully:
[14:18:23.721] [00:06:46.233,764] <dbg> location: location_core_event_cb_fn:   method: Wi-Fi + Cellular (4)
[14:18:23.721] [00:06:46.242,706] <dbg> location: location_core_event_cb_fn:   latitude: 30.646244
[14:18:23.737] [00:06:46.250,823] <dbg> location: location_core_event_cb_fn:   longitude: 114.318838
[14:18:23.737] [00:06:46.259,094] <dbg> location: location_core_event_cb_fn:   accuracy: 286.0 m
[14:18:23.750] [00:06:46.266,937] <dbg> location: location_core_event_cb_fn:   date: 2025-07-23
[14:18:23.767] [00:06:46.274,719] <dbg> location: location_core_event_cb_fn:   time: 06:18:11.582 UTC
[14:18:23.767] [00:06:46.283,020] <dbg> location: location_core_event_cb_fn:   Google maps URL: https://maps.google.com/?q=30.646244,114.318838
[14:18:23.785] [00:06:46.294,921] <dbg> location: location_utils_event_dispatch: Dispatching event: type=1
[14:18:23.785] [00:06:46.303,649] <dbg> location: location_utils_event_dispatch:  - handler=0x0000BD39
[14:18:23.799]  Cloud service location parameters Called from 0x1f87b
[14:18:23.799] Got location:
[14:18:23.799]   method: Wi-Fi + Cellular
[14:18:23.799]   latitude: 30.646244
[14:18:23.815]   longitude: 114.318838
[14:18:23.815]   accuracy: 286.0 m
[14:18:23.815]   date: 2025-07-23
[14:18:23.815]   time: 06:18:11.582 UTC
[14:18:23.815]   Google maps URL: https://maps.google.com/?q=30.646244,114.318838
[14:18:23.815] 
[14:18:23.815] [00:06:46.336,578] <dbg> location: location_utils_event_dispatch: Done
[14:18:23.828] 
[14:18:40.204] +CSCON: 0
[14:18:40.204] 
[14:19:23.839] [00:07:46.343,597] <dbg> location: location_core_location_get_pos: Requesting location with 'Wi-Fi + Cellular' method
[14:19:23.839] [00:07:46.354,553] <dbg> location: location_core_location_get_pos: Starting request timer with timeout=300000
[14:19:23.848] [00:07:46.364,837] <dbg> location: scan_wifi_execute: Triggering start of Wi-Fi scanning
[14:19:23.848] [00:07:46.384,490] <dbg> location: scan_wifi_execute: Starting Wi-Fi timer with timeout=30000
[14:19:23.884] [00:07:46.394,989] <dbg> location: scan_cellular_execute: Triggering cell measurements timeout=30000, cell_count=4
[14:19:23.884] [00:07:46.405,670] <dbg> location: scan_cellular_execute: Starting cellular timer with timeout=30000
[14:19:23.902] [00:07:46.415,191] <dbg> location: scan_cellular_execute: Normal neighbor search (NCELLMEAS=1)
[14:19:23.903] 
[14:19:27.933] [00:07:50.447,082] <dbg> location: scan_wifi_result_handle: scan result #1 stored: ssid HUAWEI-B940, channel 6, mac 04:bd:70:6f:b9:40
[14:19:27.952] [00:07:50.459,594] <dbg> location: scan_wifi_result_handle: scan result #2 stored: ssid Nordicsh, channel 6, mac 04:bd:70:6f:b9:41
[14:19:27.952] [00:07:50.471,801] <dbg> location: scan_wifi_result_handle: scan result #3 stored: ssid Nordic_ASUS, channel 149, mac 04:42:1a:a2:fc:74
[14:19:27.964] [00:07:50.484,436] <dbg> location: scan_wifi_result_handle: scan result #4 stored: ssid Nordic_ASUS, channel 12, mac 04:42:1a:a2:fc:70
[14:19:27.980] [00:07:50.496,978] <dbg> location: scan_wifi_result_handle: scan result #5 stored: ssid Nordicsh, channel 165, mac 04:bd:70:6f:b9:51
[14:19:27.996] [00:07:50.509,338] <dbg> location: scan_wifi_result_handle: scan result #6 stored: ssid HUAWEI-B940, channel 165, mac 04:bd:70:6f:b9:50
[14:19:28.012] [00:07:50.521,972] <dbg> location: scan_wifi_result_handle: scan result #7 stored: ssid Nordicsh, channel 1, mac 2c:97:b1:17:38:41
[14:19:28.012] [00:07:50.534,179] <dbg> location: scan_wifi_result_handle: scan result #8 stored: ssid lppshanghai, channel 11, mac 10:19:65:c0:55:70
[14:19:28.028] [00:07:50.546,752] <dbg> location: scan_wifi_result_handle: scan result #9 stored: ssid @Ruijie-mD790, channel 6, mac 80:05:88:aa:d7:93
[14:19:28.046] [00:07:50.559,387] <dbg> location: scan_wifi_result_handle: scan result #10 stored: ssid lppshanghai, channel 6, mac d4:a2:3d:07:ce:48
[14:19:28.060] [00:07:50.571,899] <dbg> location: scan_wifi_result_handle: scan result #11 stored: ssid Nordicsh, channel 161, mac 2c:97:b1:17:38:51
[14:19:28.075] [00:07:50.584,350] <dbg> location: scan_wifi_result_handle: scan result #12 stored: ssid HUAWEI-3840, channel 161, mac 2c:97:b1:17:38:50
[14:19:28.075] [00:07:50.597,076] <dbg> location: scan_wifi_result_handle: scan result #13 stored: ssid @Ruijie-mD790, channel 64, mac 80:05:88:aa:d7:94
[14:19:28.093] [00:07:50.609,863] <dbg> location: scan_wifi_result_handle: scan result #14 stored: ssid CU_8vNj, channel 9, mac ec:c0:1b:04:52:e8
[14:19:28.106] [00:07:50.622,070] <dbg> location: scan_wifi_result_handle: scan result #15 stored: ssid CU_8vNj_5G, channel 36, mac ec:c0:1b:04:52:ec
[14:19:28.121] [00:07:50.634,613] <dbg> location: scan_wifi_result_handle: scan result #16 stored: ssid E+, channel 9, mac f0:2f:74:37:ff:98
[14:19:28.138] [00:07:50.646,392] <dbg> location: scan_wifi_result_handle: scan result #17 stored: ssid E+, channel 149, mac f0:2f:74:37:ff:9c
[14:19:28.138] [00:07:50.658,264] <dbg> location: scan_wifi_done_handle: Scan request done with 17 Wi-Fi APs
[14:19:28.142] 
[14:19:32.582] %NCELLMEAS: 0,"01832F1B","46000","5B12",65535,3684,404,61,22,474166,3684,168,55,9,0,3684,152,49,-1,0,3686,403,61,23,30,3686,166,56,13,30,3686,131,54,8,30,3688,402,60,20,69,0
[14:19:32.597] [00:07:55.118,896] <dbg> location: scan_cellular_lte_ind_handler: Cell measurements results received: ncells_count=6, gci_cells_count=0, current_cell.id=0x01832F1B
[14:19:32.613] [00:07:55.133,789] <dbg> location: scan_cellular_lte_ind_handler: No surrounding cell information from modem
[14:19:32.630] [00:07:55.144,104] <dbg> location: scan_cellular_execute: RRC already in idle mode
[14:19:32.630] [00:07:55.152,038] <dbg> location: scan_cellular_execute: GCI history search (NCELLMEAS=3,5)
[14:19:32.635] 
[14:19:34.350] %NCELLMEAS: 0,"0193CC1B","46000","5B12",65535,0,3684,357,57,5,475964,0,0,"01832F1B","46000","5B12",65535,0,3684,404,66,22,475964,0,0,"01832F1A","46000","5B12",65535,0,3688,402,64,23,476002,0,0
[14:19:34.366] [00:07:56.885,498] <dbg> location: scan_cellular_lte_ind_handler: Cell measurements results received: ncells_count=0, gci_cells_count=3, current_cell.id=0xFFFFFFFF
[14:19:34.380] [00:07:56.900,390] <dbg> location: scan_cellular_lte_ind_handler: No neighbor cell information from modem
[14:19:34.397] [00:07:56.917,114] <dbg> location: cloud_service_location_get:  Cloud service location parameters Called from 0x20c01
[14:19:34.437] 
[14:19:34.437] [00:07:56.928,131] <dbg> location: cloud_service_location_get: Cloud service location parameters:
[14:19:34.443] [00:07:56.937,377] <dbg> location: cloud_service_location_get:   Timeout: 289426ms
[14:19:34.443] [00:07:56.945,343] <dbg> location: cloud_service_pos_get: Sending positioning request (REST)
[14:19:34.443] !print_value(item, buffer)
[14:19:34.551] [00:07:57.070,251] <err> nrf_cloud_rest: Failed to encode location request, err: -12
[14:19:34.568] [00:07:57.079,986] <err> location: Failed to acquire location using cloud location, error: -12
[14:19:34.568]  location_core_event_cb Called from 0x20b2f
[14:19:34.583] [00:07:57.093,109] <dbg> location: location_core_event_cb: k_work_submit_to_queue calls location_event_cb_work
[14:19:34.583] [00:07:57.103,485] <err> location: Location acquisition failed and fallbacks are also done
[14:19:34.599] [00:07:57.112,365] <dbg> location: location_utils_event_dispatch: Dispatching event: type=3
[14:19:34.599] [00:07:57.121,093] <dbg> location: location_utils_event_dispatch:  - handler=0x0000BD39
[14:19:34.615]  Cloud service location parameters Called from 0x1f87b
[14:19:34.615] Getting location failed
[14:19:34.615] 
[14:19:34.615] [00:07:57.136,627] <dbg> location: location_utils_event_dispatch: Done
[14:19:34.619] 
[14:20:34.620] [00:08:57.143,646] <dbg> location: location_core_location_get_pos: Requesting location with 'Wi-Fi + Cellular' method
[14:20:34.635] [00:08:57.154,602] <dbg> location: location_core_location_get_pos: Starting request timer with timeout=300000
[14:20:34.647] [00:08:57.164,886] <dbg> location: scan_wifi_execute: Triggering start of Wi-Fi scanning
[14:20:34.647] [00:08:57.184,478] <dbg> location: scan_wifi_execute: Starting Wi-Fi timer with timeout=30000
[14:20:34.682] [00:08:57.194,946] <dbg> location: scan_cellular_execute: Triggering cell measurements timeout=30000, cell_count=4
[14:20:34.682] [00:08:57.205,657] <dbg> location: scan_cellular_execute: Starting cellular timer with timeout=30000
[14:20:34.697] [00:08:57.215,148] <dbg> location: scan_cellular_execute: Normal neighbor search (NCELLMEAS=1)
[14:20:34.699] 
[14:20:36.593] %NCELLMEAS: 0,"01832F1B","46000","5B12",65535,3684,404,61,23,538177,3684,357,55,10,0,3684,168,55,10,0,3684,174,47,-6,0,3686,403,60,22,30,3686,166,57,17,30,3688,402,62,23,68,3688,274,55,9,68,3688,269,52,4,68,0
[14:20:36.621] [00:08:59.135,070] <dbg> location: scan_cellular_lte_ind_handler: Cell measurements results received: ncells_count=8, gci_cells_count=0, current_cell.id=0x01832F1B
[14:20:36.637] [00:08:59.149,993] <dbg> location: scan_cellular_lte_ind_handler: No surrounding cell information from modem
[14:20:36.637] [00:08:59.160,339] <dbg> location: scan_cellular_execute: RRC already in idle mode
[14:20:36.651] [00:08:59.168,243] <dbg> location: scan_cellular_execute: GCI history search (NCELLMEAS=3,5)
[14:20:36.651] 
[14:20:38.681] %NCELLMEAS: 0,"01832F1B","46000","5B12",65535,0,3684,404,63,20,540285,0,0,"0183761A","46000","5B12",65535,0,3684,168,58,10,540285,0,0,"01832F1A","46000","5B12",65535,0,3688,402,61,23,540323,0,0
[14:20:38.697] [00:09:01.209,594] <dbg> location: scan_cellular_lte_ind_handler: Cell measurements results received: ncells_count=0, gci_cells_count=3, current_cell.id=0xFFFFFFFF
[14:20:38.708] [00:09:01.224,517] <dbg> location: scan_cellular_lte_ind_handler: No neighbor cell information from modem
[14:20:38.708] [00:09:01.244,720] <dbg> location: scan_wifi_result_handle: scan result #1 stored: ssid HUAWEI-B940, channel 6, mac 04:bd:70:6f:b9:40
[14:20:38.742] [00:09:01.257,232] <dbg> location: scan_wifi_result_handle: scan result #2 stored: ssid Nordicsh, channel 6, mac 04:bd:70:6f:b9:41
[14:20:38.742] [00:09:01.269,439] <dbg> location: scan_wifi_result_handle: scan result #3 stored: ssid Nordic_ASUS, channel 149, mac 04:42:1a:a2:fc:74
[14:20:38.760] [00:09:01.282,073] <dbg> location: scan_wifi_result_handle: scan result #4 stored: ssid Nordicsh, channel 165, mac 04:bd:70:6f:b9:51
[14:20:38.776] [00:09:01.294,433] <dbg> location: scan_wifi_result_handle: scan result #5 stored: ssid HUAWEI-B940, channel 165, mac 04:bd:70:6f:b9:50
[14:20:38.791] [00:09:01.307,067] <dbg> location: scan_wifi_result_handle: scan result #6 stored: ssid Nordic_ASUS, channel 12, mac 04:42:1a:a2:fc:70
[14:20:38.806] [00:09:01.319,610] <dbg> location: scan_wifi_result_handle: scan result #7 stored: ssid HUAWEI-3840, channel 1, mac 2c:97:b1:17:38:40
[14:20:38.806] [00:09:01.332,061] <dbg> location: scan_wifi_result_handle: scan result #8 stored: ssid @Ruijie-mD790, channel 6, mac 80:05:88:aa:d7:93
[14:20:38.823] [00:09:01.344,726] <dbg> location: scan_wifi_result_handle: scan result #9 stored: ssid lppshanghai, channel 11, mac 10:19:65:c0:55:70
[14:20:38.838] [00:09:01.357,238] <dbg> location: scan_wifi_result_handle: scan result #10 stored: ssid lppshanghai, channel 6, mac d4:a2:3d:07:ce:48
[14:20:38.868] [00:09:01.369,781] <dbg> location: scan_wifi_result_handle: scan result #11 stored: ssid Nordicsh, channel 161, mac 2c:97:b1:17:38:51
[14:20:38.868] [00:09:01.382,232] <dbg> location: scan_wifi_result_handle: scan result #12 stored: ssid HUAWEI-3840, channel 161, mac 2c:97:b1:17:38:50
[14:20:38.884] [00:09:01.394,958] <dbg> location: scan_wifi_result_handle: scan result #13 stored: ssid CU_8vNj, channel 9, mac ec:c0:1b:04:52:e8
[14:20:38.884] [00:09:01.407,165] <dbg> location: scan_wifi_result_handle: scan result #14 stored: ssid lppshanghai, channel 1, mac d4:a2:3d:07:c9:f8
[14:20:38.899] [00:09:01.419,708] <dbg> location: scan_wifi_result_handle: scan result #15 stored: ssid Clouarchitects, channel 11, mac cc:05:77:d9:e1:0f
[14:20:38.915] [00:09:01.432,586] <dbg> location: scan_wifi_result_handle: scan result #16 stored: ssid CU_8vNj_5G, channel 36, mac ec:c0:1b:04:52:ec
[14:20:38.931] [00:09:01.445,159] <dbg> location: scan_wifi_result_handle: scan result #17 stored: ssid @Ruijie-mD790, channel 64, mac 80:05:88:aa:d7:94
[14:20:38.946] [00:09:01.457,977] <dbg> location: scan_wifi_result_handle: scan result #18 stored: ssid MIFI-C25A, channel 9, mac 3c:68:01:03:c2:5a
[14:20:38.946] [00:09:01.470,275] <dbg> location: scan_wifi_done_handle: Scan request done with 18 Wi-Fi APs
[14:20:38.952] [00:09:01.488,128] <dbg> location: cloud_service_location_get:  Cloud service location parameters Called from 0x20c01
[14:20:38.978] 
[14:20:38.978] [00:09:01.499,145] <dbg> location: cloud_service_location_get: Cloud service location parameters:
[14:20:38.994] [00:09:01.508,392] <dbg> location: cloud_service_location_get:   Timeout: 295655ms
[14:20:38.994] [00:09:01.516,357] <dbg> location: cloud_service_pos_get: Sending positioning request (REST)
[14:20:38.998] !print_value(item, buffer)
[14:20:39.120] [00:09:01.640,289] <err> nrf_cloud_rest: Failed to encode location request, err: -12
[14:20:39.133] [00:09:01.650,177] <err> location: Failed to acquire location using cloud location, error: -12
[14:20:39.133]  location_core_event_cb Called from 0x20b2f
[14:20:39.153] [00:09:01.663,299] <dbg> location: location_core_event_cb: k_work_submit_to_queue calls location_event_cb_work
[14:20:39.153] [00:09:01.673,675] <err> location: Location acquisition failed and fallbacks are also done
[14:20:39.164] [00:09:01.682,556] <dbg> location: location_utils_event_dispatch: Dispatching event: type=3
[14:20:39.179] [00:09:01.691,284] <dbg> location: location_utils_event_dispatch:  - handler=0x0000BD39
[14:20:39.179]  Cloud service location parameters Called from 0x1f87b
[14:20:39.179] Getting location fail
[14:20:39.187] ed
[14:20:39.187] 
[14:20:39.187] [00:09:01.706,817] <dbg> location: location_utils_event_dispatch: Done
[14:20:39.187] 
[14:21:39.195] [00:10:01.713,836] <dbg> location: location_core_location_get_pos: Requesting location with 'Wi-Fi + Cellular' method
[14:21:39.210] [00:10:01.724,792] <dbg> location: location_core_location_get_pos: Starting request timer with timeout=300000
[14:21:39.210] [00:10:01.735,076] <dbg> location: scan_wifi_execute: Triggering start of Wi-Fi scanning
[14:21:39.216] [00:10:01.754,486] <dbg> location: scan_wifi_execute: Starting Wi-Fi timer with timeout=30000
[14:21:39.242] [00:10:01.764,892] <dbg> location: scan_cellular_execute: Triggering cell measurements timeout=30000, cell_count=4
[14:21:39.257] [00:10:01.775,573] <dbg> location: scan_cellular_execute: Starting cellular timer with timeout=30000
[14:21:39.266] [00:10:01.785,095] <dbg> location: scan_cellular_execute: Normal neighbor search (NCELLMEAS=1)
[14:21:39.266] 
[14:21:40.596] %NCELLMEAS: 0,"0183761A","46000","5B12",65535,3684,168,58,14,602177,3684,404,60,18,0,3684,357,54,5,0,3684,278,54,4,0,3686,166,61,22,30,3688,402,63,23,68,0
[14:21:40.612] [00:10:03.130,554] <dbg> location: scan_cellular_lte_ind_handler: Cell measurements results received: ncells_count=5, gci_cells_count=0, current_cell.id=0x0183761A
[14:21:40.628] [00:10:03.145,477] <dbg> location: scan_cellular_lte_ind_handler: No surrounding cell information from modem
[14:21:40.628] [00:10:03.155,792] <dbg> location: scan_cellular_execute: RRC already in idle mode
[14:21:40.643] [00:10:03.163,696] <dbg> location: scan_cellular_execute: GCI history search (NCELLMEAS=3,5)
[14:21:40.643] 
[14:21:41.876] %NCELLMEAS: 0,"01832F1B","46000","5B12",65535,0,3684,404,61,19,603486,0,0,"0183761A","46000","5B12",65535,0,3684,168,60,18,603486,0,0,"01832F1A","46000","5B12",65535,0,3688,402,63,23,603524,0,0
[14:21:41.893] [00:10:04.412,506] <dbg> location: scan_cellular_lte_ind_handler: Cell measurements results received: ncells_count=0, gci_cells_count=3, current_cell.id=0xFFFFFFFF
[14:21:41.908] [00:10:04.427,398] <dbg> location: scan_cellular_lte_ind_handler: No neighbor cell information from modem
[14:21:41.911] 
[14:21:43.298] [00:10:05.814,453] <dbg> location: scan_wifi_result_handle: scan result #1 stored: ssid HUAWEI-B940, channel 6, mac 04:bd:70:6f:b9:40
[14:21:43.298] [00:10:05.826,965] <dbg> location: scan_wifi_result_handle: scan result #2 stored: ssid Nordicsh, channel 165, mac 04:bd:70:6f:b9:51
[14:21:43.318] [00:10:05.839,355] <dbg> location: scan_wifi_result_handle: scan result #3 stored: ssid HUAWEI-B940, channel 165, mac 04:bd:70:6f:b9:50
[14:21:43.330] [00:10:05.851,959] <dbg> location: scan_wifi_result_handle: scan result #4 stored: ssid Nordic_ASUS, channel 149, mac 04:42:1a:a2:fc:74
[14:21:43.348] [00:10:05.864,593] <dbg> location: scan_wifi_result_handle: scan result #5 stored: ssid Nordic_ASUS, channel 12, mac 04:42:1a:a2:fc:70
[14:21:43.360] [00:10:05.877,136] <dbg> location: scan_wifi_result_handle: scan result #6 stored: ssid Nordicsh, channel 1, mac 2c:97:b1:17:38:41
[14:21:43.360] [00:10:05.889,343] <dbg> location: scan_wifi_result_handle: scan result #7 stored: ssid HUAWEI-3840, channel 1, mac 2c:97:b1:17:38:40
[14:21:43.379] [00:10:05.901,794] <dbg> location: scan_wifi_result_handle: scan result #8 stored: ssid Nordicsh, channel 161, mac 2c:97:b1:17:38:51
[14:21:43.393] [00:10:05.914,215] <dbg> location: scan_wifi_result_handle: scan result #9 stored: ssid HUAWEI-3840, channel 161, mac 2c:97:b1:17:38:50
[14:21:43.409] [00:10:05.926,849] <dbg> location: scan_wifi_result_handle: scan result #10 stored: ssid @Ruijie-mD790, channel 6, mac 80:05:88:aa:d7:93
[14:21:43.423] [00:10:05.939,544] <dbg> location: scan_wifi_result_handle: scan result #11 stored: ssid lppshanghai, channel 11, mac 10:19:65:c0:55:70
[14:21:43.423] [00:10:05.952,178] <dbg> location: scan_wifi_result_handle: scan result #12 stored: ssid lppshanghai, channel 6, mac d4:a2:3d:07:ce:48
[14:21:43.440] [00:10:05.964,721] <dbg> location: scan_wifi_result_handle: scan result #13 stored: ssid lppshanghai, channel 1, mac d4:a2:3d:07:c8:b8
[14:21:43.455] [00:10:05.977,264] <dbg> location: scan_wifi_result_handle: scan result #14 stored: ssid CU_8vNj, channel 9, mac ec:c0:1b:04:52:e8
[14:21:43.471] [00:10:05.989,440] <dbg> location: scan_wifi_result_handle: scan result #15 stored: ssid SUMG23, channel 11, mac 4c:10:d5:82:63:51
[14:21:43.485] [00:10:06.001,647] <dbg> location: scan_wifi_result_handle: scan result #16 stored: ssid CU_8vNj_5G, channel 36, mac ec:c0:1b:04:52:ec
[14:21:43.501] [00:10:06.014,221] <dbg> location: scan_wifi_result_handle: scan result #17 stored: ssid @Ruijie-mD790, channel 64, mac 80:05:88:aa:d7:94
[14:21:43.501] [00:10:06.026,947] <dbg> location: scan_wifi_done_handle: Scan request done with 17 Wi-Fi APs
[14:21:43.507] [00:10:06.044,769] <dbg> location: cloud_service_location_get:  Cloud service location parameters Called from 0x20c01
[14:21:43.534] 
[14:21:43.534] [00:10:06.055,786] <dbg> location: cloud_service_location_get: Cloud service location parameters:
[14:21:43.548] [00:10:06.065,032] <dbg> location: cloud_service_location_get:   Timeout: 295669ms
[14:21:43.548] [00:10:06.072,998] <dbg> location: cloud_service_pos_get: Sending positioning request (REST)
[14:21:43.553] 
[14:21:45.038] +CSCON: 1
[14:21:45.038] 
[14:21:53.809] [00:10:16.334,197] <dbg> location: method_cloud_location_positioning_work_fn: location_core_event_cb enters
[14:21:53.824]  location_core_event_cb Called from 0x20c53
[14:21:53.824] [00:10:16.348,144] <dbg> location: location_core_event_cb: k_work_submit_to_queue calls location_event_cb_work
[14:21:53.848] [00:10:16.358,520] <dbg> location: location_core_event_cb_fn: Location acquired successfully:
[14:21:53.855] [00:10:16.367,401] <dbg> location: location_core_event_cb_fn:   method: Wi-Fi + Cellular (4)
[14:21:53.855] [00:10:16.376,342] <dbg> location: location_core_event_cb_fn:   latitude: 30.646244
[14:21:53.870] [00:10:16.384,460] <dbg> location: location_core_event_cb_fn:   longitude: 114.318838
[14:21:53.870] [00:10:16.392,730] <dbg> location: location_core_event_cb_fn:   accuracy: 286.0 m
[14:21:53.888] [00:10:16.400,573] <dbg> location: location_core_event_cb_fn:   date: 2025-07-23
[14:21:53.888] [00:10:16.408,355] <dbg> location: location_core_event_cb_fn:   time: 06:21:43.111 UTC
[14:21:53.902] [00:10:16.416,656] <dbg> location: location_core_event_cb_fn:   Google maps URL: https://maps.google.com/?q=30.646244,114.318838
[14:21:53.902] [00:10:16.428,558] <dbg> location: location_utils_event_dispatch: Dispatching event: type=1
[14:21:53.918] [00:10:16.437,286] <dbg> location: location_utils_event_dispatch:  - handler=0x0000BD39
[14:21:53.918]  Cloud service location parameters Called from 0x1f87b
[14:21:53.934] Got location:
[14:21:53.934]   method: Wi-Fi + Cellular
[14:21:53.934]   latitude: 30.646244
[14:21:53.934]   longitude: 114.318838
[14:21:53.934]   accuracy: 286.0 m
[14:21:53.934]   date: 2025-07-23
[14:21:53.934]   time: 06:21:43.111 UTC
[14:21:53.948]   Google maps URL: https://maps.google.com/?q=30.646244,114.318838
[14:21:53.948] 
[14:21:53.948] [00:10:16.470,214] <dbg> location: location_utils_event_dispatch: Done
[14:21:53.948] 

i couldn't findout which memory is not enough.and i think this is a bug here.

Regards,

William.

Related