Improve Android app

Now it can talk to backend as well to the demo device: `LCD.AddLine`,
`LED.Set`, `LED.Get`.

PUBLISHED_FROM=40f493cdabe6ad23a6f26a4563366bebb5071529
This commit is contained in:
Dmitry Frank 2016-04-08 10:45:18 +03:00 committed by rojer
parent d31d8a764b
commit 0be132f3b5

View File

@ -1,10 +1,11 @@
--- ---
title: "MG_MK_STR()" title: "mg_mk_str()"
decl_name: "MG_MK_STR" decl_name: "mg_mk_str"
symbol_kind: "func" symbol_kind: "func"
signature: | signature: |
#define MG_MK_STR(str_literal); struct mg_str mg_mk_str(const char *s);
--- ---
Macro for initializing mg_str. A helper function for creating mg_str struct from plain C string.
`NULL` is allowed and becomes `{NULL, 0}`.