From 6febd661f6a769653dc344c0e8d417723301e421 Mon Sep 17 00:00:00 2001 From: SASANO Takayoshi Date: Mon, 9 Mar 2020 20:48:14 +0900 Subject: [PATCH] add return value description of writeDMRIntEx() --- Display.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Display.cpp b/Display.cpp index fcc7f59..dc28fe2 100644 --- a/Display.cpp +++ b/Display.cpp @@ -410,6 +410,13 @@ void CDisplay::writeDStarBERInt(float ber) int CDisplay::writeDMRIntEx(unsigned int slotNo, const class CUserDBentry& src, bool group, const std::string& dst, const char* type) { + /* + * return value: + * < 0 error condition (i.e. not supported) + * -> call writeDMRInt() to display + * = 0 no error, writeDMRIntEx() displayed whole status + * > 0 reserved for future use + */ return -1; // not supported }