- 27 Sep, 2024 37 commits
-
-
Guido Casati authored
* moved F1AP related docs to a separate folder in docs
-
Guido Casati authored
-
Guido Casati authored
-
Guido Casati authored
-
Guido Casati authored
-
Guido Casati authored
-
Guido Casati authored
-
Guido Casati authored
* add transaction_id * refactored remaining members
-
Guido Casati authored
-
Guido Casati authored
-
Guido Casati authored
-
Guido Casati authored
* removed optional IEs, whose encoding/decoding is not done
-
Guido Casati authored
-
Guido Casati authored
-
Guido Casati authored
-
Guido Casati authored
-
Guido Casati authored
* not defined in 9.2.1.8 of 3GPP TS 38.473
-
Guido Casati authored
-
Guido Casati authored
-
Guido Casati authored
-
Guido Casati authored
* added missing Transaction ID to te F1 Setup Failure message struct * fill F1 Setup Failure transaction ID in RRC before calling the F1 Setup Failure function
-
Guido Casati authored
-
Guido Casati authored
-
Guido Casati authored
-
Guido Casati authored
-
Guido Casati authored
-
Guido Casati authored
-
Guido Casati authored
-
Guido Casati authored
-
Guido Casati authored
-
Guido Casati authored
-
Guido Casati authored
-
Guido Casati authored
-
Robert Schmidt authored
Co-authored-by: Guido Casati <hello@guidocasati.com>
-
Robert Schmidt authored
Co-authored-by: Guido Casati <hello@guidocasati.com>
-
Guido Casati authored
-
Guido Casati authored
* _F1_EQ_CHECK_GENERIC can be used to check the equality of two different members of F1AP structs and return `false` if the condition is not met. When the condition fails, the macros will print a debug message to the standard error stream, including the function name, line number, and the provided format string and arguments.
-
- 25 Sep, 2024 3 commits
-
-
Robert Schmidt authored
Add a new target f1ap_lib that groups F1AP ASN.1 encoding&decoding for messages defined f1ap_messages_types.h. The objective is to, for each F1AP message, - add encoder&decoder (similar to what already exists, but without mandatory message sending afterwards) - eq_X() function that checks two messages for equality (to be used mostly in tests) - cp_X() function that deep-copies a message, e.g., to be used when sending ITTI messages, instead of manual copying done currently - free_X() function that frees the memory associated to a memory, to avoid memory leaks. Each message will be tested, notably that encoding&decoding as well as copying yield identical messages. The actual message encoding & decoding, tests, and their use will be done in the forthcoming commits.
-
Robert Schmidt authored
Co-authored-by: Guido Casati <hello@guidocasati.com>
-
Robert Schmidt authored
The currently used type does not cover all possibilities. While we don't encode&decode them, it might still be good to be able to express it, so introduce the new type. Co-authored-by: Guido Casati <hello@guidocasati.com>
-