This is merely a historical archive of years 2008-2021, before the migration to mailman3.
A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/gerrit-log@lists.osmocom.org/.
laforge gerrit-no-reply at lists.osmocom.orglaforge has submitted this change. ( https://gerrit.osmocom.org/c/osmo-remsim/+/16627 )
Change subject: remsim-client: store last 'status'
......................................................................
remsim-client: store last 'status'
Keep a local copy of the last status message of the cardem
firmware.
Change-Id: I5b348035da8f0905364b67f21f5c7be112b20e70
---
M src/client/simtrace2-remsim_client.c
1 file changed, 6 insertions(+), 0 deletions(-)
Approvals:
laforge: Looks good to me, approved
Jenkins Builder: Verified
diff --git a/src/client/simtrace2-remsim_client.c b/src/client/simtrace2-remsim_client.c
index 515fd50..173b890 100644
--- a/src/client/simtrace2-remsim_client.c
+++ b/src/client/simtrace2-remsim_client.c
@@ -86,6 +86,7 @@
struct cardem_inst {
/* slot on which this card emulation instance runs */
struct st_slot *slot;
+ struct cardemu_usb_msg_status last_status;
};
/* global GSMTAP instance */
@@ -544,6 +545,11 @@
-1 /* FIXME: make this dependent on board */);
server_conn_send_rspro(&g_client->bankd_conn, pdu);
+ if (ci->last_status.flags != status->flags) {
+ ci->last_status = *status;
+ } else
+ ci->last_status = *status;
+
return 0;
}
--
To view, visit https://gerrit.osmocom.org/c/osmo-remsim/+/16627
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-remsim
Gerrit-Branch: master
Gerrit-Change-Id: I5b348035da8f0905364b67f21f5c7be112b20e70
Gerrit-Change-Number: 16627
Gerrit-PatchSet: 8
Gerrit-Owner: laforge <laforge at osmocom.org>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: laforge <laforge at osmocom.org>
Gerrit-MessageType: merged
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.osmocom.org/pipermail/gerrit-log/attachments/20200216/2adfc89b/attachment.htm>