Esp32 NimBLE experiments (#1613)

* Delete callbacks on bleServer on destruct

* Trying things
This commit is contained in:
Ben Meadors
2022-08-10 12:44:52 -05:00
committed by GitHub
parent 1d1ccd6b19
commit 7d0411cd15
3 changed files with 13 additions and 8 deletions

View File

@@ -257,10 +257,10 @@ typedef struct _Location {
uint32_t expire;
/* If true, only allow the original sender to update the location. */
bool locked;
/* Name of the location - max 40 chars */
/* Name of the location - max 30 chars */
char name[30];
/* *
Description of the location - max 160 chars */
Description of the location - max 100 chars */
char description[100];
} Location;