aboutsummaryrefslogtreecommitdiffstats
path: root/src/encoding.h
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2021-05-26 13:17:01 +0200
committerPau Espin Pedrol <pespin@sysmocom.de>2021-07-01 13:09:20 +0200
commitdeed90dd0030e6ea32ad4d74386cd91fc2f67436 (patch)
treecc995c7d33fc54bde068ac19c5e092f9780f09b2 /src/encoding.h
parent4f67a9bf4610c9e948f0d81f3b039f36675180a3 (diff)
WIP: Support ANR procedures on MS with active TBFpespin/anrnext
TODO: * General clean up * Find out and fix why MS not resetting Neighbour List to BA(GPRS) when empty NC_Frequency_List is sent in Packet Measurement Order. * Fix MS most of the time not sending Neighbour report for cells not present in SI2, probably due to waiting not enough time (increasing NC_REPORTING_PERIOD_T may help, but then problem in previous point above may show up more). Also maybe waiting for several reports before continuing may also help. * Configurable/dynamic chunk list size currently hardcoded to 5. Improvements/optimizations: * Use FREQUENCY_DIFF in Add_Frequency for NC_Frequency_List to make it smaller and hence require less PAcketMeasurementOrder messages. * Support Enchanced Packet Report message (need to signal support for it too). Related: SYS#5303 Change-Id: I051d4fa90fe4ccc44ea691f8a3a487e97868e52c
Diffstat (limited to 'src/encoding.h')
-rw-r--r--src/encoding.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/encoding.h b/src/encoding.h
index 665bd77d..1b579b20 100644
--- a/src/encoding.h
+++ b/src/encoding.h
@@ -129,6 +129,13 @@ void write_packet_cell_change_continue(RlcMacDownlink_t *block, uint8_t poll, ui
bool tfi_is_dl, uint8_t tfi, bool exist_id,
uint16_t arfcn, uint8_t bsic, uint8_t container_id);
+void write_packet_measurement_order(RlcMacDownlink_t *block, uint8_t poll, uint8_t rrbp,
+ bool tfi_assigned, bool tfi_is_dl, uint8_t tfi,
+ uint32_t tlli, uint8_t pmo_idx, uint8_t pmo_count,
+ uint8_t nco, bool exist_nc, uint8_t non_drx_period,
+ uint8_t nc_report_period_i, uint8_t nc_report_period_t,
+ const NC_Frequency_list_t *NC_Frequency_list);
+
#ifdef __cplusplus
}
#endif