From 9132e549ac9f92a99bff1e8ee749172121f65df6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Hru=C5=A1ka?= Date: Sun, 24 Dec 2017 23:20:38 +0100 Subject: [PATCH] improve ping msg --- comm/messages.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/comm/messages.c b/comm/messages.c index 0c248e7..27aed73 100644 --- a/comm/messages.c +++ b/comm/messages.c @@ -19,7 +19,8 @@ TinyFrame *comm = &tf_; */ static TF_Result lst_ping(TinyFrame *tf, TF_Msg *msg) { - com_respond_snprintf(msg->frame_id, MSG_SUCCESS, "%s/%s", GEX_VERSION, GEX_PLATFORM); + com_respond_snprintf(msg->frame_id, MSG_SUCCESS, + "GEX v%s on %s", GEX_VERSION, GEX_PLATFORM); return TF_STAY; }