MyMesh.cpp 68 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875
  1. #include "MyMesh.h"
  2. #include <Arduino.h> // needed for PlatformIO
  3. #include <Mesh.h>
  4. #define CMD_APP_START 1
  5. #define CMD_SEND_TXT_MSG 2
  6. #define CMD_SEND_CHANNEL_TXT_MSG 3
  7. #define CMD_GET_CONTACTS 4 // with optional 'since' (for efficient sync)
  8. #define CMD_GET_DEVICE_TIME 5
  9. #define CMD_SET_DEVICE_TIME 6
  10. #define CMD_SEND_SELF_ADVERT 7
  11. #define CMD_SET_ADVERT_NAME 8
  12. #define CMD_ADD_UPDATE_CONTACT 9
  13. #define CMD_SYNC_NEXT_MESSAGE 10
  14. #define CMD_SET_RADIO_PARAMS 11
  15. #define CMD_SET_RADIO_TX_POWER 12
  16. #define CMD_RESET_PATH 13
  17. #define CMD_SET_ADVERT_LATLON 14
  18. #define CMD_REMOVE_CONTACT 15
  19. #define CMD_SHARE_CONTACT 16
  20. #define CMD_EXPORT_CONTACT 17
  21. #define CMD_IMPORT_CONTACT 18
  22. #define CMD_REBOOT 19
  23. #define CMD_GET_BATT_AND_STORAGE 20 // was CMD_GET_BATTERY_VOLTAGE
  24. #define CMD_SET_TUNING_PARAMS 21
  25. #define CMD_DEVICE_QEURY 22
  26. #define CMD_EXPORT_PRIVATE_KEY 23
  27. #define CMD_IMPORT_PRIVATE_KEY 24
  28. #define CMD_SEND_RAW_DATA 25
  29. #define CMD_SEND_LOGIN 26
  30. #define CMD_SEND_STATUS_REQ 27
  31. #define CMD_HAS_CONNECTION 28
  32. #define CMD_LOGOUT 29 // 'Disconnect'
  33. #define CMD_GET_CONTACT_BY_KEY 30
  34. #define CMD_GET_CHANNEL 31
  35. #define CMD_SET_CHANNEL 32
  36. #define CMD_SIGN_START 33
  37. #define CMD_SIGN_DATA 34
  38. #define CMD_SIGN_FINISH 35
  39. #define CMD_SEND_TRACE_PATH 36
  40. #define CMD_SET_DEVICE_PIN 37
  41. #define CMD_SET_OTHER_PARAMS 38
  42. #define CMD_SEND_TELEMETRY_REQ 39 // can deprecate this
  43. #define CMD_GET_CUSTOM_VARS 40
  44. #define CMD_SET_CUSTOM_VAR 41
  45. #define CMD_GET_ADVERT_PATH 42
  46. #define CMD_GET_TUNING_PARAMS 43
  47. // NOTE: CMD range 44..49 parked, potentially for WiFi operations
  48. #define CMD_SEND_BINARY_REQ 50
  49. #define CMD_FACTORY_RESET 51
  50. #define CMD_SEND_PATH_DISCOVERY_REQ 52
  51. #define CMD_SET_FLOOD_SCOPE 54 // v8+
  52. #define CMD_SEND_CONTROL_DATA 55 // v8+
  53. #define CMD_GET_STATS 56 // v8+, second byte is stats type
  54. // Stats sub-types for CMD_GET_STATS
  55. #define STATS_TYPE_CORE 0
  56. #define STATS_TYPE_RADIO 1
  57. #define STATS_TYPE_PACKETS 2
  58. #define RESP_CODE_OK 0
  59. #define RESP_CODE_ERR 1
  60. #define RESP_CODE_CONTACTS_START 2 // first reply to CMD_GET_CONTACTS
  61. #define RESP_CODE_CONTACT 3 // multiple of these (after CMD_GET_CONTACTS)
  62. #define RESP_CODE_END_OF_CONTACTS 4 // last reply to CMD_GET_CONTACTS
  63. #define RESP_CODE_SELF_INFO 5 // reply to CMD_APP_START
  64. #define RESP_CODE_SENT 6 // reply to CMD_SEND_TXT_MSG
  65. #define RESP_CODE_CONTACT_MSG_RECV 7 // a reply to CMD_SYNC_NEXT_MESSAGE (ver < 3)
  66. #define RESP_CODE_CHANNEL_MSG_RECV 8 // a reply to CMD_SYNC_NEXT_MESSAGE (ver < 3)
  67. #define RESP_CODE_CURR_TIME 9 // a reply to CMD_GET_DEVICE_TIME
  68. #define RESP_CODE_NO_MORE_MESSAGES 10 // a reply to CMD_SYNC_NEXT_MESSAGE
  69. #define RESP_CODE_EXPORT_CONTACT 11
  70. #define RESP_CODE_BATT_AND_STORAGE 12 // a reply to a CMD_GET_BATT_AND_STORAGE
  71. #define RESP_CODE_DEVICE_INFO 13 // a reply to CMD_DEVICE_QEURY
  72. #define RESP_CODE_PRIVATE_KEY 14 // a reply to CMD_EXPORT_PRIVATE_KEY
  73. #define RESP_CODE_DISABLED 15
  74. #define RESP_CODE_CONTACT_MSG_RECV_V3 16 // a reply to CMD_SYNC_NEXT_MESSAGE (ver >= 3)
  75. #define RESP_CODE_CHANNEL_MSG_RECV_V3 17 // a reply to CMD_SYNC_NEXT_MESSAGE (ver >= 3)
  76. #define RESP_CODE_CHANNEL_INFO 18 // a reply to CMD_GET_CHANNEL
  77. #define RESP_CODE_SIGN_START 19
  78. #define RESP_CODE_SIGNATURE 20
  79. #define RESP_CODE_CUSTOM_VARS 21
  80. #define RESP_CODE_ADVERT_PATH 22
  81. #define RESP_CODE_TUNING_PARAMS 23
  82. #define RESP_CODE_STATS 24 // v8+, second byte is stats type
  83. #define SEND_TIMEOUT_BASE_MILLIS 500
  84. #define FLOOD_SEND_TIMEOUT_FACTOR 16.0f
  85. #define DIRECT_SEND_PERHOP_FACTOR 6.0f
  86. #define DIRECT_SEND_PERHOP_EXTRA_MILLIS 250
  87. #define LAZY_CONTACTS_WRITE_DELAY 5000
  88. #define PUBLIC_GROUP_PSK "izOH6cXN6mrJ5e26oRXNcg=="
  89. // these are _pushed_ to client app at any time
  90. #define PUSH_CODE_ADVERT 0x80
  91. #define PUSH_CODE_PATH_UPDATED 0x81
  92. #define PUSH_CODE_SEND_CONFIRMED 0x82
  93. #define PUSH_CODE_MSG_WAITING 0x83
  94. #define PUSH_CODE_RAW_DATA 0x84
  95. #define PUSH_CODE_LOGIN_SUCCESS 0x85
  96. #define PUSH_CODE_LOGIN_FAIL 0x86
  97. #define PUSH_CODE_STATUS_RESPONSE 0x87
  98. #define PUSH_CODE_LOG_RX_DATA 0x88
  99. #define PUSH_CODE_TRACE_DATA 0x89
  100. #define PUSH_CODE_NEW_ADVERT 0x8A
  101. #define PUSH_CODE_TELEMETRY_RESPONSE 0x8B
  102. #define PUSH_CODE_BINARY_RESPONSE 0x8C
  103. #define PUSH_CODE_PATH_DISCOVERY_RESPONSE 0x8D
  104. #define PUSH_CODE_CONTROL_DATA 0x8E // v8+
  105. #define ERR_CODE_UNSUPPORTED_CMD 1
  106. #define ERR_CODE_NOT_FOUND 2
  107. #define ERR_CODE_TABLE_FULL 3
  108. #define ERR_CODE_BAD_STATE 4
  109. #define ERR_CODE_FILE_IO_ERROR 5
  110. #define ERR_CODE_ILLEGAL_ARG 6
  111. #define MAX_SIGN_DATA_LEN (8 * 1024) // 8K
  112. void MyMesh::writeOKFrame() {
  113. uint8_t buf[1];
  114. buf[0] = RESP_CODE_OK;
  115. _serial->writeFrame(buf, 1);
  116. }
  117. void MyMesh::writeErrFrame(uint8_t err_code) {
  118. uint8_t buf[2];
  119. buf[0] = RESP_CODE_ERR;
  120. buf[1] = err_code;
  121. _serial->writeFrame(buf, 2);
  122. }
  123. void MyMesh::writeDisabledFrame() {
  124. uint8_t buf[1];
  125. buf[0] = RESP_CODE_DISABLED;
  126. _serial->writeFrame(buf, 1);
  127. }
  128. void MyMesh::writeContactRespFrame(uint8_t code, const ContactInfo &contact) {
  129. int i = 0;
  130. out_frame[i++] = code;
  131. memcpy(&out_frame[i], contact.id.pub_key, PUB_KEY_SIZE);
  132. i += PUB_KEY_SIZE;
  133. out_frame[i++] = contact.type;
  134. out_frame[i++] = contact.flags;
  135. out_frame[i++] = contact.out_path_len;
  136. memcpy(&out_frame[i], contact.out_path, MAX_PATH_SIZE);
  137. i += MAX_PATH_SIZE;
  138. StrHelper::strzcpy((char *)&out_frame[i], contact.name, 32);
  139. i += 32;
  140. memcpy(&out_frame[i], &contact.last_advert_timestamp, 4);
  141. i += 4;
  142. memcpy(&out_frame[i], &contact.gps_lat, 4);
  143. i += 4;
  144. memcpy(&out_frame[i], &contact.gps_lon, 4);
  145. i += 4;
  146. memcpy(&out_frame[i], &contact.lastmod, 4);
  147. i += 4;
  148. _serial->writeFrame(out_frame, i);
  149. }
  150. void MyMesh::updateContactFromFrame(ContactInfo &contact, uint32_t& last_mod, const uint8_t *frame, int len) {
  151. int i = 0;
  152. uint8_t code = frame[i++]; // eg. CMD_ADD_UPDATE_CONTACT
  153. memcpy(contact.id.pub_key, &frame[i], PUB_KEY_SIZE);
  154. i += PUB_KEY_SIZE;
  155. contact.type = frame[i++];
  156. contact.flags = frame[i++];
  157. contact.out_path_len = frame[i++];
  158. memcpy(contact.out_path, &frame[i], MAX_PATH_SIZE);
  159. i += MAX_PATH_SIZE;
  160. memcpy(contact.name, &frame[i], 32);
  161. i += 32;
  162. memcpy(&contact.last_advert_timestamp, &frame[i], 4);
  163. i += 4;
  164. if (len >= i + 8) { // optional fields
  165. memcpy(&contact.gps_lat, &frame[i], 4);
  166. i += 4;
  167. memcpy(&contact.gps_lon, &frame[i], 4);
  168. i += 4;
  169. if (len >= i + 4) {
  170. memcpy(&last_mod, &frame[i], 4);
  171. }
  172. }
  173. }
  174. bool MyMesh::Frame::isChannelMsg() const {
  175. return buf[0] == RESP_CODE_CHANNEL_MSG_RECV || buf[0] == RESP_CODE_CHANNEL_MSG_RECV_V3;
  176. }
  177. void MyMesh::addToOfflineQueue(const uint8_t frame[], int len) {
  178. if (offline_queue_len >= OFFLINE_QUEUE_SIZE) {
  179. MESH_DEBUG_PRINTLN("WARN: offline_queue is full!");
  180. int pos = 0;
  181. while (pos < offline_queue_len) {
  182. if (offline_queue[pos].isChannelMsg()) {
  183. for (int i = pos; i < offline_queue_len - 1; i++) { // delete oldest channel msg from queue
  184. offline_queue[i] = offline_queue[i + 1];
  185. }
  186. MESH_DEBUG_PRINTLN("INFO: removed oldest channel message from queue.");
  187. offline_queue[offline_queue_len - 1].len = len;
  188. memcpy(offline_queue[offline_queue_len - 1].buf, frame, len);
  189. return;
  190. }
  191. pos++;
  192. }
  193. MESH_DEBUG_PRINTLN("INFO: no channel messages to remove from queue.");
  194. } else {
  195. offline_queue[offline_queue_len].len = len;
  196. memcpy(offline_queue[offline_queue_len].buf, frame, len);
  197. offline_queue_len++;
  198. }
  199. }
  200. int MyMesh::getFromOfflineQueue(uint8_t frame[]) {
  201. if (offline_queue_len > 0) { // check offline queue
  202. size_t len = offline_queue[0].len; // take from top of queue
  203. memcpy(frame, offline_queue[0].buf, len);
  204. offline_queue_len--;
  205. for (int i = 0; i < offline_queue_len; i++) { // delete top item from queue
  206. offline_queue[i] = offline_queue[i + 1];
  207. }
  208. return len;
  209. }
  210. return 0; // queue is empty
  211. }
  212. float MyMesh::getAirtimeBudgetFactor() const {
  213. return _prefs.airtime_factor;
  214. }
  215. int MyMesh::getInterferenceThreshold() const {
  216. return 0; // disabled for now, until currentRSSI() problem is resolved
  217. }
  218. int MyMesh::calcRxDelay(float score, uint32_t air_time) const {
  219. if (_prefs.rx_delay_base <= 0.0f) return 0;
  220. return (int)((pow(_prefs.rx_delay_base, 0.85f - score) - 1.0) * air_time);
  221. }
  222. uint8_t MyMesh::getExtraAckTransmitCount() const {
  223. return _prefs.multi_acks;
  224. }
  225. void MyMesh::logRxRaw(float snr, float rssi, const uint8_t raw[], int len) {
  226. if (_serial->isConnected() && len + 3 <= MAX_FRAME_SIZE) {
  227. int i = 0;
  228. out_frame[i++] = PUSH_CODE_LOG_RX_DATA;
  229. out_frame[i++] = (int8_t)(snr * 4);
  230. out_frame[i++] = (int8_t)(rssi);
  231. memcpy(&out_frame[i], raw, len);
  232. i += len;
  233. _serial->writeFrame(out_frame, i);
  234. }
  235. }
  236. bool MyMesh::isAutoAddEnabled() const {
  237. return (_prefs.manual_add_contacts & 1) == 0;
  238. }
  239. void MyMesh::onDiscoveredContact(ContactInfo &contact, bool is_new, uint8_t path_len, const uint8_t* path) {
  240. if (_serial->isConnected()) {
  241. if (!isAutoAddEnabled() && is_new) {
  242. writeContactRespFrame(PUSH_CODE_NEW_ADVERT, contact);
  243. } else {
  244. out_frame[0] = PUSH_CODE_ADVERT;
  245. memcpy(&out_frame[1], contact.id.pub_key, PUB_KEY_SIZE);
  246. _serial->writeFrame(out_frame, 1 + PUB_KEY_SIZE);
  247. }
  248. } else {
  249. #ifdef DISPLAY_CLASS
  250. if (_ui) _ui->notify(UIEventType::newContactMessage);
  251. #endif
  252. }
  253. // add inbound-path to mem cache
  254. if (path && path_len <= sizeof(AdvertPath::path)) { // check path is valid
  255. AdvertPath* p = advert_paths;
  256. uint32_t oldest = 0xFFFFFFFF;
  257. for (int i = 0; i < ADVERT_PATH_TABLE_SIZE; i++) { // check if already in table, otherwise evict oldest
  258. if (memcmp(advert_paths[i].pubkey_prefix, contact.id.pub_key, sizeof(AdvertPath::pubkey_prefix)) == 0) {
  259. p = &advert_paths[i]; // found
  260. break;
  261. }
  262. if (advert_paths[i].recv_timestamp < oldest) {
  263. oldest = advert_paths[i].recv_timestamp;
  264. p = &advert_paths[i];
  265. }
  266. }
  267. memcpy(p->pubkey_prefix, contact.id.pub_key, sizeof(p->pubkey_prefix));
  268. strcpy(p->name, contact.name);
  269. p->recv_timestamp = getRTCClock()->getCurrentTime();
  270. p->path_len = path_len;
  271. memcpy(p->path, path, p->path_len);
  272. }
  273. dirty_contacts_expiry = futureMillis(LAZY_CONTACTS_WRITE_DELAY);
  274. }
  275. static int sort_by_recent(const void *a, const void *b) {
  276. return ((AdvertPath *) b)->recv_timestamp - ((AdvertPath *) a)->recv_timestamp;
  277. }
  278. int MyMesh::getRecentlyHeard(AdvertPath dest[], int max_num) {
  279. if (max_num > ADVERT_PATH_TABLE_SIZE) max_num = ADVERT_PATH_TABLE_SIZE;
  280. qsort(advert_paths, ADVERT_PATH_TABLE_SIZE, sizeof(advert_paths[0]), sort_by_recent);
  281. for (int i = 0; i < max_num; i++) {
  282. dest[i] = advert_paths[i];
  283. }
  284. return max_num;
  285. }
  286. void MyMesh::onContactPathUpdated(const ContactInfo &contact) {
  287. out_frame[0] = PUSH_CODE_PATH_UPDATED;
  288. memcpy(&out_frame[1], contact.id.pub_key, PUB_KEY_SIZE);
  289. _serial->writeFrame(out_frame, 1 + PUB_KEY_SIZE); // NOTE: app may not be connected
  290. dirty_contacts_expiry = futureMillis(LAZY_CONTACTS_WRITE_DELAY);
  291. }
  292. ContactInfo* MyMesh::processAck(const uint8_t *data) {
  293. // see if matches any in a table
  294. for (int i = 0; i < EXPECTED_ACK_TABLE_SIZE; i++) {
  295. if (memcmp(data, &expected_ack_table[i].ack, 4) == 0) { // got an ACK from recipient
  296. out_frame[0] = PUSH_CODE_SEND_CONFIRMED;
  297. memcpy(&out_frame[1], data, 4);
  298. uint32_t trip_time = _ms->getMillis() - expected_ack_table[i].msg_sent;
  299. memcpy(&out_frame[5], &trip_time, 4);
  300. _serial->writeFrame(out_frame, 9);
  301. // NOTE: the same ACK can be received multiple times!
  302. expected_ack_table[i].ack = 0; // clear expected hash, now that we have received ACK
  303. return expected_ack_table[i].contact;
  304. }
  305. }
  306. return checkConnectionsAck(data);
  307. }
  308. void MyMesh::queueMessage(const ContactInfo &from, uint8_t txt_type, mesh::Packet *pkt,
  309. uint32_t sender_timestamp, const uint8_t *extra, int extra_len, const char *text) {
  310. int i = 0;
  311. if (app_target_ver >= 3) {
  312. out_frame[i++] = RESP_CODE_CONTACT_MSG_RECV_V3;
  313. out_frame[i++] = (int8_t)(pkt->getSNR() * 4);
  314. out_frame[i++] = 0; // reserved1
  315. out_frame[i++] = 0; // reserved2
  316. } else {
  317. out_frame[i++] = RESP_CODE_CONTACT_MSG_RECV;
  318. }
  319. memcpy(&out_frame[i], from.id.pub_key, 6);
  320. i += 6; // just 6-byte prefix
  321. uint8_t path_len = out_frame[i++] = pkt->isRouteFlood() ? pkt->path_len : 0xFF;
  322. out_frame[i++] = txt_type;
  323. memcpy(&out_frame[i], &sender_timestamp, 4);
  324. i += 4;
  325. if (extra_len > 0) {
  326. memcpy(&out_frame[i], extra, extra_len);
  327. i += extra_len;
  328. }
  329. int tlen = strlen(text); // TODO: UTF-8 ??
  330. if (i + tlen > MAX_FRAME_SIZE) {
  331. tlen = MAX_FRAME_SIZE - i;
  332. }
  333. memcpy(&out_frame[i], text, tlen);
  334. i += tlen;
  335. addToOfflineQueue(out_frame, i);
  336. if (_serial->isConnected()) {
  337. uint8_t frame[1];
  338. frame[0] = PUSH_CODE_MSG_WAITING; // send push 'tickle'
  339. _serial->writeFrame(frame, 1);
  340. }
  341. #ifdef DISPLAY_CLASS
  342. // we only want to show text messages on display, not cli data
  343. bool should_display = txt_type == TXT_TYPE_PLAIN || txt_type == TXT_TYPE_SIGNED_PLAIN;
  344. if (should_display && _ui) {
  345. _ui->newMsg(path_len, from.name, text, offline_queue_len);
  346. if (!_serial->isConnected()) {
  347. _ui->notify(UIEventType::contactMessage);
  348. }
  349. }
  350. #endif
  351. }
  352. bool MyMesh::filterRecvFloodPacket(mesh::Packet* packet) {
  353. // REVISIT: try to determine which Region (from transport_codes[1]) that Sender is indicating for replies/responses
  354. // if unknown, fallback to finding Region from transport_codes[0], the 'scope' used by Sender
  355. return false;
  356. }
  357. void MyMesh::sendFloodScoped(const ContactInfo& recipient, mesh::Packet* pkt, uint32_t delay_millis) {
  358. // TODO: dynamic send_scope, depending on recipient and current 'home' Region
  359. if (send_scope.isNull()) {
  360. sendFlood(pkt, delay_millis);
  361. } else {
  362. uint16_t codes[2];
  363. codes[0] = send_scope.calcTransportCode(pkt);
  364. codes[1] = 0; // REVISIT: set to 'home' Region, for sender/return region?
  365. sendFlood(pkt, codes, delay_millis);
  366. }
  367. }
  368. void MyMesh::sendFloodScoped(const mesh::GroupChannel& channel, mesh::Packet* pkt, uint32_t delay_millis) {
  369. // TODO: have per-channel send_scope
  370. if (send_scope.isNull()) {
  371. sendFlood(pkt, delay_millis);
  372. } else {
  373. uint16_t codes[2];
  374. codes[0] = send_scope.calcTransportCode(pkt);
  375. codes[1] = 0; // REVISIT: set to 'home' Region, for sender/return region?
  376. sendFlood(pkt, codes, delay_millis);
  377. }
  378. }
  379. void MyMesh::onMessageRecv(const ContactInfo &from, mesh::Packet *pkt, uint32_t sender_timestamp,
  380. const char *text) {
  381. markConnectionActive(from); // in case this is from a server, and we have a connection
  382. queueMessage(from, TXT_TYPE_PLAIN, pkt, sender_timestamp, NULL, 0, text);
  383. }
  384. void MyMesh::onCommandDataRecv(const ContactInfo &from, mesh::Packet *pkt, uint32_t sender_timestamp,
  385. const char *text) {
  386. markConnectionActive(from); // in case this is from a server, and we have a connection
  387. queueMessage(from, TXT_TYPE_CLI_DATA, pkt, sender_timestamp, NULL, 0, text);
  388. }
  389. void MyMesh::onSignedMessageRecv(const ContactInfo &from, mesh::Packet *pkt, uint32_t sender_timestamp,
  390. const uint8_t *sender_prefix, const char *text) {
  391. markConnectionActive(from);
  392. // from.sync_since change needs to be persisted
  393. dirty_contacts_expiry = futureMillis(LAZY_CONTACTS_WRITE_DELAY);
  394. queueMessage(from, TXT_TYPE_SIGNED_PLAIN, pkt, sender_timestamp, sender_prefix, 4, text);
  395. }
  396. void MyMesh::onChannelMessageRecv(const mesh::GroupChannel &channel, mesh::Packet *pkt, uint32_t timestamp,
  397. const char *text) {
  398. int i = 0;
  399. if (app_target_ver >= 3) {
  400. out_frame[i++] = RESP_CODE_CHANNEL_MSG_RECV_V3;
  401. out_frame[i++] = (int8_t)(pkt->getSNR() * 4);
  402. out_frame[i++] = 0; // reserved1
  403. out_frame[i++] = 0; // reserved2
  404. } else {
  405. out_frame[i++] = RESP_CODE_CHANNEL_MSG_RECV;
  406. }
  407. uint8_t channel_idx = findChannelIdx(channel);
  408. out_frame[i++] = channel_idx;
  409. uint8_t path_len = out_frame[i++] = pkt->isRouteFlood() ? pkt->path_len : 0xFF;
  410. out_frame[i++] = TXT_TYPE_PLAIN;
  411. memcpy(&out_frame[i], &timestamp, 4);
  412. i += 4;
  413. int tlen = strlen(text); // TODO: UTF-8 ??
  414. if (i + tlen > MAX_FRAME_SIZE) {
  415. tlen = MAX_FRAME_SIZE - i;
  416. }
  417. memcpy(&out_frame[i], text, tlen);
  418. i += tlen;
  419. addToOfflineQueue(out_frame, i);
  420. if (_serial->isConnected()) {
  421. uint8_t frame[1];
  422. frame[0] = PUSH_CODE_MSG_WAITING; // send push 'tickle'
  423. _serial->writeFrame(frame, 1);
  424. } else {
  425. #ifdef DISPLAY_CLASS
  426. if (_ui) _ui->notify(UIEventType::channelMessage);
  427. #endif
  428. }
  429. #ifdef DISPLAY_CLASS
  430. // Get the channel name from the channel index
  431. const char *channel_name = "Unknown";
  432. ChannelDetails channel_details;
  433. if (getChannel(channel_idx, channel_details)) {
  434. channel_name = channel_details.name;
  435. }
  436. if (_ui) _ui->newMsg(path_len, channel_name, text, offline_queue_len);
  437. #endif
  438. }
  439. uint8_t MyMesh::onContactRequest(const ContactInfo &contact, uint32_t sender_timestamp, const uint8_t *data,
  440. uint8_t len, uint8_t *reply) {
  441. if (data[0] == REQ_TYPE_GET_TELEMETRY_DATA) {
  442. uint8_t permissions = 0;
  443. uint8_t cp = contact.flags >> 1; // LSB used as 'favourite' bit (so only use upper bits)
  444. if (_prefs.telemetry_mode_base == TELEM_MODE_ALLOW_ALL) {
  445. permissions = TELEM_PERM_BASE;
  446. } else if (_prefs.telemetry_mode_base == TELEM_MODE_ALLOW_FLAGS) {
  447. permissions = cp & TELEM_PERM_BASE;
  448. }
  449. if (_prefs.telemetry_mode_loc == TELEM_MODE_ALLOW_ALL) {
  450. permissions |= TELEM_PERM_LOCATION;
  451. } else if (_prefs.telemetry_mode_loc == TELEM_MODE_ALLOW_FLAGS) {
  452. permissions |= cp & TELEM_PERM_LOCATION;
  453. }
  454. if (_prefs.telemetry_mode_env == TELEM_MODE_ALLOW_ALL) {
  455. permissions |= TELEM_PERM_ENVIRONMENT;
  456. } else if (_prefs.telemetry_mode_env == TELEM_MODE_ALLOW_FLAGS) {
  457. permissions |= cp & TELEM_PERM_ENVIRONMENT;
  458. }
  459. uint8_t perm_mask = ~(data[1]); // NEW: first reserved byte (of 4), is now inverse mask to apply to permissions
  460. permissions &= perm_mask;
  461. if (permissions & TELEM_PERM_BASE) { // only respond if base permission bit is set
  462. telemetry.reset();
  463. telemetry.addVoltage(TELEM_CHANNEL_SELF, (float)board.getBattMilliVolts() / 1000.0f);
  464. // query other sensors -- target specific
  465. sensors.querySensors(permissions, telemetry);
  466. memcpy(reply, &sender_timestamp,
  467. 4); // reflect sender_timestamp back in response packet (kind of like a 'tag')
  468. uint8_t tlen = telemetry.getSize();
  469. memcpy(&reply[4], telemetry.getBuffer(), tlen);
  470. return 4 + tlen;
  471. }
  472. }
  473. return 0; // unknown
  474. }
  475. void MyMesh::onContactResponse(const ContactInfo &contact, const uint8_t *data, uint8_t len) {
  476. uint32_t tag;
  477. memcpy(&tag, data, 4);
  478. if (pending_login && memcmp(&pending_login, contact.id.pub_key, 4) == 0) { // check for login response
  479. // yes, is response to pending sendLogin()
  480. pending_login = 0;
  481. int i = 0;
  482. if (memcmp(&data[4], "OK", 2) == 0) { // legacy Repeater login OK response
  483. out_frame[i++] = PUSH_CODE_LOGIN_SUCCESS;
  484. out_frame[i++] = 0; // legacy: is_admin = false
  485. memcpy(&out_frame[i], contact.id.pub_key, 6);
  486. i += 6; // pub_key_prefix
  487. } else if (data[4] == RESP_SERVER_LOGIN_OK) { // new login response
  488. uint16_t keep_alive_secs = ((uint16_t)data[5]) * 16;
  489. if (keep_alive_secs > 0) {
  490. startConnection(contact, keep_alive_secs);
  491. }
  492. out_frame[i++] = PUSH_CODE_LOGIN_SUCCESS;
  493. out_frame[i++] = data[6]; // permissions (eg. is_admin)
  494. memcpy(&out_frame[i], contact.id.pub_key, 6);
  495. i += 6; // pub_key_prefix
  496. memcpy(&out_frame[i], &tag, 4);
  497. i += 4; // NEW: include server timestamp
  498. out_frame[i++] = data[7]; // NEW (v7): ACL permissions
  499. out_frame[i++] = data[12]; // FIRMWARE_VER_LEVEL
  500. } else {
  501. out_frame[i++] = PUSH_CODE_LOGIN_FAIL;
  502. out_frame[i++] = 0; // reserved
  503. memcpy(&out_frame[i], contact.id.pub_key, 6);
  504. i += 6; // pub_key_prefix
  505. }
  506. _serial->writeFrame(out_frame, i);
  507. } else if (len > 4 && // check for status response
  508. pending_status &&
  509. memcmp(&pending_status, contact.id.pub_key, 4) == 0 // legacy matching scheme
  510. // FUTURE: tag == pending_status
  511. ) {
  512. pending_status = 0;
  513. int i = 0;
  514. out_frame[i++] = PUSH_CODE_STATUS_RESPONSE;
  515. out_frame[i++] = 0; // reserved
  516. memcpy(&out_frame[i], contact.id.pub_key, 6);
  517. i += 6; // pub_key_prefix
  518. memcpy(&out_frame[i], &data[4], len - 4);
  519. i += (len - 4);
  520. _serial->writeFrame(out_frame, i);
  521. } else if (len > 4 && tag == pending_telemetry) { // check for matching response tag
  522. pending_telemetry = 0;
  523. int i = 0;
  524. out_frame[i++] = PUSH_CODE_TELEMETRY_RESPONSE;
  525. out_frame[i++] = 0; // reserved
  526. memcpy(&out_frame[i], contact.id.pub_key, 6);
  527. i += 6; // pub_key_prefix
  528. memcpy(&out_frame[i], &data[4], len - 4);
  529. i += (len - 4);
  530. _serial->writeFrame(out_frame, i);
  531. } else if (len > 4 && tag == pending_req) { // check for matching response tag
  532. pending_req = 0;
  533. int i = 0;
  534. out_frame[i++] = PUSH_CODE_BINARY_RESPONSE;
  535. out_frame[i++] = 0; // reserved
  536. memcpy(&out_frame[i], &tag, 4); // app needs to match this to RESP_CODE_SENT.tag
  537. i += 4;
  538. memcpy(&out_frame[i], &data[4], len - 4);
  539. i += (len - 4);
  540. _serial->writeFrame(out_frame, i);
  541. }
  542. }
  543. bool MyMesh::onContactPathRecv(ContactInfo& contact, uint8_t* in_path, uint8_t in_path_len, uint8_t* out_path, uint8_t out_path_len, uint8_t extra_type, uint8_t* extra, uint8_t extra_len) {
  544. if (extra_type == PAYLOAD_TYPE_RESPONSE && extra_len > 4) {
  545. uint32_t tag;
  546. memcpy(&tag, extra, 4);
  547. if (tag == pending_discovery) { // check for matching response tag)
  548. pending_discovery = 0;
  549. if (in_path_len > MAX_PATH_SIZE || out_path_len > MAX_PATH_SIZE) {
  550. MESH_DEBUG_PRINTLN("onContactPathRecv, invalid path sizes: %d, %d", in_path_len, out_path_len);
  551. } else {
  552. int i = 0;
  553. out_frame[i++] = PUSH_CODE_PATH_DISCOVERY_RESPONSE;
  554. out_frame[i++] = 0; // reserved
  555. memcpy(&out_frame[i], contact.id.pub_key, 6);
  556. i += 6; // pub_key_prefix
  557. out_frame[i++] = out_path_len;
  558. memcpy(&out_frame[i], out_path, out_path_len);
  559. i += out_path_len;
  560. out_frame[i++] = in_path_len;
  561. memcpy(&out_frame[i], in_path, in_path_len);
  562. i += in_path_len;
  563. // NOTE: telemetry data in 'extra' is discarded at present
  564. _serial->writeFrame(out_frame, i);
  565. }
  566. return false; // DON'T send reciprocal path!
  567. }
  568. }
  569. // let base class handle received path and data
  570. return BaseChatMesh::onContactPathRecv(contact, in_path, in_path_len, out_path, out_path_len, extra_type, extra, extra_len);
  571. }
  572. void MyMesh::onControlDataRecv(mesh::Packet *packet) {
  573. if (packet->payload_len + 4 > sizeof(out_frame)) {
  574. MESH_DEBUG_PRINTLN("onControlDataRecv(), payload_len too long: %d", packet->payload_len);
  575. return;
  576. }
  577. int i = 0;
  578. out_frame[i++] = PUSH_CODE_CONTROL_DATA;
  579. out_frame[i++] = (int8_t)(_radio->getLastSNR() * 4);
  580. out_frame[i++] = (int8_t)(_radio->getLastRSSI());
  581. out_frame[i++] = packet->path_len;
  582. memcpy(&out_frame[i], packet->payload, packet->payload_len);
  583. i += packet->payload_len;
  584. if (_serial->isConnected()) {
  585. _serial->writeFrame(out_frame, i);
  586. } else {
  587. MESH_DEBUG_PRINTLN("onControlDataRecv(), data received while app offline");
  588. }
  589. }
  590. void MyMesh::onRawDataRecv(mesh::Packet *packet) {
  591. if (packet->payload_len + 4 > sizeof(out_frame)) {
  592. MESH_DEBUG_PRINTLN("onRawDataRecv(), payload_len too long: %d", packet->payload_len);
  593. return;
  594. }
  595. int i = 0;
  596. out_frame[i++] = PUSH_CODE_RAW_DATA;
  597. out_frame[i++] = (int8_t)(_radio->getLastSNR() * 4);
  598. out_frame[i++] = (int8_t)(_radio->getLastRSSI());
  599. out_frame[i++] = 0xFF; // reserved (possibly path_len in future)
  600. memcpy(&out_frame[i], packet->payload, packet->payload_len);
  601. i += packet->payload_len;
  602. if (_serial->isConnected()) {
  603. _serial->writeFrame(out_frame, i);
  604. } else {
  605. MESH_DEBUG_PRINTLN("onRawDataRecv(), data received while app offline");
  606. }
  607. }
  608. void MyMesh::onTraceRecv(mesh::Packet *packet, uint32_t tag, uint32_t auth_code, uint8_t flags,
  609. const uint8_t *path_snrs, const uint8_t *path_hashes, uint8_t path_len) {
  610. uint8_t path_sz = flags & 0x03; // NEW v1.11+
  611. if (12 + path_len + (path_len >> path_sz) + 1 > sizeof(out_frame)) {
  612. MESH_DEBUG_PRINTLN("onTraceRecv(), path_len is too long: %d", (uint32_t)path_len);
  613. return;
  614. }
  615. int i = 0;
  616. out_frame[i++] = PUSH_CODE_TRACE_DATA;
  617. out_frame[i++] = 0; // reserved
  618. out_frame[i++] = path_len;
  619. out_frame[i++] = flags;
  620. memcpy(&out_frame[i], &tag, 4);
  621. i += 4;
  622. memcpy(&out_frame[i], &auth_code, 4);
  623. i += 4;
  624. memcpy(&out_frame[i], path_hashes, path_len);
  625. i += path_len;
  626. memcpy(&out_frame[i], path_snrs, path_len >> path_sz);
  627. i += path_len >> path_sz;
  628. out_frame[i++] = (int8_t)(packet->getSNR() * 4); // extra/final SNR (to this node)
  629. if (_serial->isConnected()) {
  630. _serial->writeFrame(out_frame, i);
  631. } else {
  632. MESH_DEBUG_PRINTLN("onTraceRecv(), data received while app offline");
  633. }
  634. }
  635. uint32_t MyMesh::calcFloodTimeoutMillisFor(uint32_t pkt_airtime_millis) const {
  636. return SEND_TIMEOUT_BASE_MILLIS + (FLOOD_SEND_TIMEOUT_FACTOR * pkt_airtime_millis);
  637. }
  638. uint32_t MyMesh::calcDirectTimeoutMillisFor(uint32_t pkt_airtime_millis, uint8_t path_len) const {
  639. return SEND_TIMEOUT_BASE_MILLIS +
  640. ((pkt_airtime_millis * DIRECT_SEND_PERHOP_FACTOR + DIRECT_SEND_PERHOP_EXTRA_MILLIS) *
  641. (path_len + 1));
  642. }
  643. void MyMesh::onSendTimeout() {}
  644. MyMesh::MyMesh(mesh::Radio &radio, mesh::RNG &rng, mesh::RTCClock &rtc, SimpleMeshTables &tables, DataStore& store, AbstractUITask* ui)
  645. : BaseChatMesh(radio, *new ArduinoMillis(), rng, rtc, *new StaticPoolPacketManager(16), tables),
  646. _serial(NULL), telemetry(MAX_PACKET_PAYLOAD - 4), _store(&store), _ui(ui) {
  647. _iter_started = false;
  648. _cli_rescue = false;
  649. offline_queue_len = 0;
  650. app_target_ver = 0;
  651. clearPendingReqs();
  652. next_ack_idx = 0;
  653. sign_data = NULL;
  654. dirty_contacts_expiry = 0;
  655. memset(advert_paths, 0, sizeof(advert_paths));
  656. memset(send_scope.key, 0, sizeof(send_scope.key));
  657. // defaults
  658. memset(&_prefs, 0, sizeof(_prefs));
  659. _prefs.airtime_factor = 1.0; // one half
  660. strcpy(_prefs.node_name, "NONAME");
  661. _prefs.freq = LORA_FREQ;
  662. _prefs.sf = LORA_SF;
  663. _prefs.bw = LORA_BW;
  664. _prefs.cr = LORA_CR;
  665. _prefs.tx_power_dbm = LORA_TX_POWER;
  666. _prefs.gps_enabled = 0; // GPS disabled by default
  667. _prefs.gps_interval = 0; // No automatic GPS updates by default
  668. //_prefs.rx_delay_base = 10.0f; enable once new algo fixed
  669. }
  670. void MyMesh::begin(bool has_display) {
  671. BaseChatMesh::begin();
  672. if (!_store->loadMainIdentity(self_id)) {
  673. self_id = radio_new_identity(); // create new random identity
  674. int count = 0;
  675. while (count < 10 && (self_id.pub_key[0] == 0x00 || self_id.pub_key[0] == 0xFF)) { // reserved id hashes
  676. self_id = radio_new_identity();
  677. count++;
  678. }
  679. _store->saveMainIdentity(self_id);
  680. }
  681. // use hex of first 4 bytes of identity public key as default node name
  682. char pub_key_hex[10];
  683. mesh::Utils::toHex(pub_key_hex, self_id.pub_key, 4);
  684. strcpy(_prefs.node_name, pub_key_hex);
  685. // if name is provided as a build flag, use that as default node name instead
  686. #ifdef ADVERT_NAME
  687. strcpy(_prefs.node_name, ADVERT_NAME);
  688. #endif
  689. // load persisted prefs
  690. _store->loadPrefs(_prefs, sensors.node_lat, sensors.node_lon);
  691. // sanitise bad pref values
  692. _prefs.rx_delay_base = constrain(_prefs.rx_delay_base, 0, 20.0f);
  693. _prefs.airtime_factor = constrain(_prefs.airtime_factor, 0, 9.0f);
  694. _prefs.freq = constrain(_prefs.freq, 400.0f, 2500.0f);
  695. _prefs.bw = constrain(_prefs.bw, 7.8f, 500.0f);
  696. _prefs.sf = constrain(_prefs.sf, 5, 12);
  697. _prefs.cr = constrain(_prefs.cr, 5, 8);
  698. _prefs.tx_power_dbm = constrain(_prefs.tx_power_dbm, 1, MAX_LORA_TX_POWER);
  699. _prefs.gps_enabled = constrain(_prefs.gps_enabled, 0, 1); // Ensure boolean 0 or 1
  700. #ifdef BLE_PIN_CODE // 123456 by default
  701. if (_prefs.ble_pin == 0) {
  702. #ifdef DISPLAY_CLASS
  703. if (has_display && BLE_PIN_CODE == 123456) {
  704. StdRNG rng;
  705. _active_ble_pin = rng.nextInt(100000, 999999); // random pin each session
  706. } else {
  707. _active_ble_pin = BLE_PIN_CODE; // otherwise static pin
  708. }
  709. #else
  710. _active_ble_pin = BLE_PIN_CODE; // otherwise static pin
  711. #endif
  712. } else {
  713. _active_ble_pin = _prefs.ble_pin;
  714. }
  715. #else
  716. _active_ble_pin = 0;
  717. #endif
  718. resetContacts();
  719. _store->loadContacts(this);
  720. addChannel("Public", PUBLIC_GROUP_PSK); // pre-configure Andy's public channel
  721. _store->loadChannels(this);
  722. radio_set_params(_prefs.freq, _prefs.bw, _prefs.sf, _prefs.cr);
  723. radio_set_tx_power(_prefs.tx_power_dbm);
  724. #if ENV_INCLUDE_GPS == 1
  725. sensors.setSettingValue("gps", _prefs.gps_enabled ? "1" : "0");
  726. #endif
  727. }
  728. const char *MyMesh::getNodeName() {
  729. return _prefs.node_name;
  730. }
  731. NodePrefs *MyMesh::getNodePrefs() {
  732. return &_prefs;
  733. }
  734. uint32_t MyMesh::getBLEPin() {
  735. return _active_ble_pin;
  736. }
  737. void MyMesh::startInterface(BaseSerialInterface &serial) {
  738. _serial = &serial;
  739. serial.enable();
  740. }
  741. void MyMesh::handleCmdFrame(size_t len) {
  742. if (cmd_frame[0] == CMD_DEVICE_QEURY && len >= 2) { // sent when app establishes connection
  743. app_target_ver = cmd_frame[1]; // which version of protocol does app understand
  744. int i = 0;
  745. out_frame[i++] = RESP_CODE_DEVICE_INFO;
  746. out_frame[i++] = FIRMWARE_VER_CODE;
  747. out_frame[i++] = MAX_CONTACTS / 2; // v3+
  748. out_frame[i++] = MAX_GROUP_CHANNELS; // v3+
  749. memcpy(&out_frame[i], &_prefs.ble_pin, 4);
  750. i += 4;
  751. memset(&out_frame[i], 0, 12);
  752. strcpy((char *)&out_frame[i], FIRMWARE_BUILD_DATE);
  753. i += 12;
  754. StrHelper::strzcpy((char *)&out_frame[i], board.getManufacturerName(), 40);
  755. i += 40;
  756. StrHelper::strzcpy((char *)&out_frame[i], FIRMWARE_VERSION, 20);
  757. i += 20;
  758. _serial->writeFrame(out_frame, i);
  759. } else if (cmd_frame[0] == CMD_APP_START &&
  760. len >= 8) { // sent when app establishes connection, respond with node ID
  761. // cmd_frame[1..7] reserved future
  762. char *app_name = (char *)&cmd_frame[8];
  763. cmd_frame[len] = 0; // make app_name null terminated
  764. MESH_DEBUG_PRINTLN("App %s connected", app_name);
  765. _iter_started = false; // stop any left-over ContactsIterator
  766. int i = 0;
  767. out_frame[i++] = RESP_CODE_SELF_INFO;
  768. out_frame[i++] = ADV_TYPE_CHAT; // what this node Advert identifies as (maybe node's pronouns too?? :-)
  769. out_frame[i++] = _prefs.tx_power_dbm;
  770. out_frame[i++] = MAX_LORA_TX_POWER;
  771. memcpy(&out_frame[i], self_id.pub_key, PUB_KEY_SIZE);
  772. i += PUB_KEY_SIZE;
  773. int32_t lat, lon;
  774. lat = (sensors.node_lat * 1000000.0);
  775. lon = (sensors.node_lon * 1000000.0);
  776. memcpy(&out_frame[i], &lat, 4);
  777. i += 4;
  778. memcpy(&out_frame[i], &lon, 4);
  779. i += 4;
  780. out_frame[i++] = _prefs.multi_acks; // new v7+
  781. out_frame[i++] = _prefs.advert_loc_policy;
  782. out_frame[i++] = (_prefs.telemetry_mode_env << 4) | (_prefs.telemetry_mode_loc << 2) |
  783. (_prefs.telemetry_mode_base); // v5+
  784. out_frame[i++] = _prefs.manual_add_contacts;
  785. uint32_t freq = _prefs.freq * 1000;
  786. memcpy(&out_frame[i], &freq, 4);
  787. i += 4;
  788. uint32_t bw = _prefs.bw * 1000;
  789. memcpy(&out_frame[i], &bw, 4);
  790. i += 4;
  791. out_frame[i++] = _prefs.sf;
  792. out_frame[i++] = _prefs.cr;
  793. int tlen = strlen(_prefs.node_name); // revisit: UTF_8 ??
  794. memcpy(&out_frame[i], _prefs.node_name, tlen);
  795. i += tlen;
  796. _serial->writeFrame(out_frame, i);
  797. } else if (cmd_frame[0] == CMD_SEND_TXT_MSG && len >= 14) {
  798. int i = 1;
  799. uint8_t txt_type = cmd_frame[i++];
  800. uint8_t attempt = cmd_frame[i++];
  801. uint32_t msg_timestamp;
  802. memcpy(&msg_timestamp, &cmd_frame[i], 4);
  803. i += 4;
  804. uint8_t *pub_key_prefix = &cmd_frame[i];
  805. i += 6;
  806. ContactInfo *recipient = lookupContactByPubKey(pub_key_prefix, 6);
  807. if (recipient && (txt_type == TXT_TYPE_PLAIN || txt_type == TXT_TYPE_CLI_DATA)) {
  808. char *text = (char *)&cmd_frame[i];
  809. int tlen = len - i;
  810. uint32_t est_timeout;
  811. text[tlen] = 0; // ensure null
  812. int result;
  813. uint32_t expected_ack;
  814. if (txt_type == TXT_TYPE_CLI_DATA) {
  815. result = sendCommandData(*recipient, msg_timestamp, attempt, text, est_timeout);
  816. expected_ack = 0; // no Ack expected
  817. } else {
  818. result = sendMessage(*recipient, msg_timestamp, attempt, text, expected_ack, est_timeout);
  819. }
  820. // TODO: add expected ACK to table
  821. if (result == MSG_SEND_FAILED) {
  822. writeErrFrame(ERR_CODE_TABLE_FULL);
  823. } else {
  824. if (expected_ack) {
  825. expected_ack_table[next_ack_idx].msg_sent = _ms->getMillis(); // add to circular table
  826. expected_ack_table[next_ack_idx].ack = expected_ack;
  827. expected_ack_table[next_ack_idx].contact = recipient;
  828. next_ack_idx = (next_ack_idx + 1) % EXPECTED_ACK_TABLE_SIZE;
  829. }
  830. out_frame[0] = RESP_CODE_SENT;
  831. out_frame[1] = (result == MSG_SEND_SENT_FLOOD) ? 1 : 0;
  832. memcpy(&out_frame[2], &expected_ack, 4);
  833. memcpy(&out_frame[6], &est_timeout, 4);
  834. _serial->writeFrame(out_frame, 10);
  835. }
  836. } else {
  837. writeErrFrame(recipient == NULL
  838. ? ERR_CODE_NOT_FOUND
  839. : ERR_CODE_UNSUPPORTED_CMD); // unknown recipient, or unsuported TXT_TYPE_*
  840. }
  841. } else if (cmd_frame[0] == CMD_SEND_CHANNEL_TXT_MSG) { // send GroupChannel msg
  842. int i = 1;
  843. uint8_t txt_type = cmd_frame[i++]; // should be TXT_TYPE_PLAIN
  844. uint8_t channel_idx = cmd_frame[i++];
  845. uint32_t msg_timestamp;
  846. memcpy(&msg_timestamp, &cmd_frame[i], 4);
  847. i += 4;
  848. const char *text = (char *)&cmd_frame[i];
  849. if (txt_type != TXT_TYPE_PLAIN) {
  850. writeErrFrame(ERR_CODE_UNSUPPORTED_CMD);
  851. } else {
  852. ChannelDetails channel;
  853. bool success = getChannel(channel_idx, channel);
  854. if (success && sendGroupMessage(msg_timestamp, channel.channel, _prefs.node_name, text, len - i)) {
  855. writeOKFrame();
  856. } else {
  857. writeErrFrame(ERR_CODE_NOT_FOUND); // bad channel_idx
  858. }
  859. }
  860. } else if (cmd_frame[0] == CMD_GET_CONTACTS) { // get Contact list
  861. if (_iter_started) {
  862. writeErrFrame(ERR_CODE_BAD_STATE); // iterator is currently busy
  863. } else {
  864. if (len >= 5) { // has optional 'since' param
  865. memcpy(&_iter_filter_since, &cmd_frame[1], 4);
  866. } else {
  867. _iter_filter_since = 0;
  868. }
  869. uint8_t reply[5];
  870. reply[0] = RESP_CODE_CONTACTS_START;
  871. uint32_t count = getNumContacts(); // total, NOT filtered count
  872. memcpy(&reply[1], &count, 4);
  873. _serial->writeFrame(reply, 5);
  874. // start iterator
  875. _iter = startContactsIterator();
  876. _iter_started = true;
  877. _most_recent_lastmod = 0;
  878. }
  879. } else if (cmd_frame[0] == CMD_SET_ADVERT_NAME && len >= 2) {
  880. int nlen = len - 1;
  881. if (nlen > sizeof(_prefs.node_name) - 1) nlen = sizeof(_prefs.node_name) - 1; // max len
  882. memcpy(_prefs.node_name, &cmd_frame[1], nlen);
  883. _prefs.node_name[nlen] = 0; // null terminator
  884. savePrefs();
  885. writeOKFrame();
  886. } else if (cmd_frame[0] == CMD_SET_ADVERT_LATLON && len >= 9) {
  887. int32_t lat, lon, alt = 0;
  888. memcpy(&lat, &cmd_frame[1], 4);
  889. memcpy(&lon, &cmd_frame[5], 4);
  890. if (len >= 13) {
  891. memcpy(&alt, &cmd_frame[9], 4); // for FUTURE support
  892. }
  893. if (lat <= 90 * 1E6 && lat >= -90 * 1E6 && lon <= 180 * 1E6 && lon >= -180 * 1E6) {
  894. sensors.node_lat = ((double)lat) / 1000000.0;
  895. sensors.node_lon = ((double)lon) / 1000000.0;
  896. savePrefs();
  897. writeOKFrame();
  898. } else {
  899. writeErrFrame(ERR_CODE_ILLEGAL_ARG); // invalid geo coordinate
  900. }
  901. } else if (cmd_frame[0] == CMD_GET_DEVICE_TIME) {
  902. uint8_t reply[5];
  903. reply[0] = RESP_CODE_CURR_TIME;
  904. uint32_t now = getRTCClock()->getCurrentTime();
  905. memcpy(&reply[1], &now, 4);
  906. _serial->writeFrame(reply, 5);
  907. } else if (cmd_frame[0] == CMD_SET_DEVICE_TIME && len >= 5) {
  908. uint32_t secs;
  909. memcpy(&secs, &cmd_frame[1], 4);
  910. uint32_t curr = getRTCClock()->getCurrentTime();
  911. if (secs >= curr) {
  912. getRTCClock()->setCurrentTime(secs);
  913. writeOKFrame();
  914. } else {
  915. writeErrFrame(ERR_CODE_ILLEGAL_ARG);
  916. }
  917. } else if (cmd_frame[0] == CMD_SEND_SELF_ADVERT) {
  918. mesh::Packet* pkt;
  919. if (_prefs.advert_loc_policy == ADVERT_LOC_NONE) {
  920. pkt = createSelfAdvert(_prefs.node_name);
  921. } else {
  922. pkt = createSelfAdvert(_prefs.node_name, sensors.node_lat, sensors.node_lon);
  923. }
  924. if (pkt) {
  925. if (len >= 2 && cmd_frame[1] == 1) { // optional param (1 = flood, 0 = zero hop)
  926. sendFlood(pkt);
  927. } else {
  928. sendZeroHop(pkt);
  929. }
  930. writeOKFrame();
  931. } else {
  932. writeErrFrame(ERR_CODE_TABLE_FULL);
  933. }
  934. } else if (cmd_frame[0] == CMD_RESET_PATH && len >= 1 + 32) {
  935. uint8_t *pub_key = &cmd_frame[1];
  936. ContactInfo *recipient = lookupContactByPubKey(pub_key, PUB_KEY_SIZE);
  937. if (recipient) {
  938. recipient->out_path_len = -1;
  939. // recipient->lastmod = ?? shouldn't be needed, app already has this version of contact
  940. dirty_contacts_expiry = futureMillis(LAZY_CONTACTS_WRITE_DELAY);
  941. writeOKFrame();
  942. } else {
  943. writeErrFrame(ERR_CODE_NOT_FOUND); // unknown contact
  944. }
  945. } else if (cmd_frame[0] == CMD_ADD_UPDATE_CONTACT && len >= 1 + 32 + 2 + 1) {
  946. uint8_t *pub_key = &cmd_frame[1];
  947. ContactInfo *recipient = lookupContactByPubKey(pub_key, PUB_KEY_SIZE);
  948. uint32_t last_mod = getRTCClock()->getCurrentTime(); // fallback value if not present in cmd_frame
  949. if (recipient) {
  950. updateContactFromFrame(*recipient, last_mod, cmd_frame, len);
  951. recipient->lastmod = last_mod;
  952. dirty_contacts_expiry = futureMillis(LAZY_CONTACTS_WRITE_DELAY);
  953. writeOKFrame();
  954. } else {
  955. ContactInfo contact;
  956. updateContactFromFrame(contact, last_mod, cmd_frame, len);
  957. contact.lastmod = last_mod;
  958. contact.sync_since = 0;
  959. if (addContact(contact)) {
  960. dirty_contacts_expiry = futureMillis(LAZY_CONTACTS_WRITE_DELAY);
  961. writeOKFrame();
  962. } else {
  963. writeErrFrame(ERR_CODE_TABLE_FULL);
  964. }
  965. }
  966. } else if (cmd_frame[0] == CMD_REMOVE_CONTACT) {
  967. uint8_t *pub_key = &cmd_frame[1];
  968. ContactInfo *recipient = lookupContactByPubKey(pub_key, PUB_KEY_SIZE);
  969. if (recipient && removeContact(*recipient)) {
  970. dirty_contacts_expiry = futureMillis(LAZY_CONTACTS_WRITE_DELAY);
  971. writeOKFrame();
  972. } else {
  973. writeErrFrame(ERR_CODE_NOT_FOUND); // not found, or unable to remove
  974. }
  975. } else if (cmd_frame[0] == CMD_SHARE_CONTACT) {
  976. uint8_t *pub_key = &cmd_frame[1];
  977. ContactInfo *recipient = lookupContactByPubKey(pub_key, PUB_KEY_SIZE);
  978. if (recipient) {
  979. if (shareContactZeroHop(*recipient)) {
  980. writeOKFrame();
  981. } else {
  982. writeErrFrame(ERR_CODE_TABLE_FULL); // unable to send
  983. }
  984. } else {
  985. writeErrFrame(ERR_CODE_NOT_FOUND);
  986. }
  987. } else if (cmd_frame[0] == CMD_GET_CONTACT_BY_KEY) {
  988. uint8_t *pub_key = &cmd_frame[1];
  989. ContactInfo *contact = lookupContactByPubKey(pub_key, PUB_KEY_SIZE);
  990. if (contact) {
  991. writeContactRespFrame(RESP_CODE_CONTACT, *contact);
  992. } else {
  993. writeErrFrame(ERR_CODE_NOT_FOUND); // not found
  994. }
  995. } else if (cmd_frame[0] == CMD_EXPORT_CONTACT) {
  996. if (len < 1 + PUB_KEY_SIZE) {
  997. // export SELF
  998. mesh::Packet* pkt;
  999. if (_prefs.advert_loc_policy == ADVERT_LOC_NONE) {
  1000. pkt = createSelfAdvert(_prefs.node_name);
  1001. } else {
  1002. pkt = createSelfAdvert(_prefs.node_name, sensors.node_lat, sensors.node_lon);
  1003. }
  1004. if (pkt) {
  1005. pkt->header |= ROUTE_TYPE_FLOOD; // would normally be sent in this mode
  1006. out_frame[0] = RESP_CODE_EXPORT_CONTACT;
  1007. uint8_t out_len = pkt->writeTo(&out_frame[1]);
  1008. releasePacket(pkt); // undo the obtainNewPacket()
  1009. _serial->writeFrame(out_frame, out_len + 1);
  1010. } else {
  1011. writeErrFrame(ERR_CODE_TABLE_FULL); // Error
  1012. }
  1013. } else {
  1014. uint8_t *pub_key = &cmd_frame[1];
  1015. ContactInfo *recipient = lookupContactByPubKey(pub_key, PUB_KEY_SIZE);
  1016. uint8_t out_len;
  1017. if (recipient && (out_len = exportContact(*recipient, &out_frame[1])) > 0) {
  1018. out_frame[0] = RESP_CODE_EXPORT_CONTACT;
  1019. _serial->writeFrame(out_frame, out_len + 1);
  1020. } else {
  1021. writeErrFrame(ERR_CODE_NOT_FOUND); // not found
  1022. }
  1023. }
  1024. } else if (cmd_frame[0] == CMD_IMPORT_CONTACT && len > 2 + 32 + 64) {
  1025. if (importContact(&cmd_frame[1], len - 1)) {
  1026. writeOKFrame();
  1027. } else {
  1028. writeErrFrame(ERR_CODE_ILLEGAL_ARG);
  1029. }
  1030. } else if (cmd_frame[0] == CMD_SYNC_NEXT_MESSAGE) {
  1031. int out_len;
  1032. if ((out_len = getFromOfflineQueue(out_frame)) > 0) {
  1033. _serial->writeFrame(out_frame, out_len);
  1034. #ifdef DISPLAY_CLASS
  1035. if (_ui) _ui->msgRead(offline_queue_len);
  1036. #endif
  1037. } else {
  1038. out_frame[0] = RESP_CODE_NO_MORE_MESSAGES;
  1039. _serial->writeFrame(out_frame, 1);
  1040. }
  1041. } else if (cmd_frame[0] == CMD_SET_RADIO_PARAMS) {
  1042. int i = 1;
  1043. uint32_t freq;
  1044. memcpy(&freq, &cmd_frame[i], 4);
  1045. i += 4;
  1046. uint32_t bw;
  1047. memcpy(&bw, &cmd_frame[i], 4);
  1048. i += 4;
  1049. uint8_t sf = cmd_frame[i++];
  1050. uint8_t cr = cmd_frame[i++];
  1051. if (freq >= 300000 && freq <= 2500000 && sf >= 5 && sf <= 12 && cr >= 5 && cr <= 8 && bw >= 7000 &&
  1052. bw <= 500000) {
  1053. _prefs.sf = sf;
  1054. _prefs.cr = cr;
  1055. _prefs.freq = (float)freq / 1000.0;
  1056. _prefs.bw = (float)bw / 1000.0;
  1057. savePrefs();
  1058. radio_set_params(_prefs.freq, _prefs.bw, _prefs.sf, _prefs.cr);
  1059. MESH_DEBUG_PRINTLN("OK: CMD_SET_RADIO_PARAMS: f=%d, bw=%d, sf=%d, cr=%d", freq, bw, (uint32_t)sf,
  1060. (uint32_t)cr);
  1061. writeOKFrame();
  1062. } else {
  1063. MESH_DEBUG_PRINTLN("Error: CMD_SET_RADIO_PARAMS: f=%d, bw=%d, sf=%d, cr=%d", freq, bw, (uint32_t)sf,
  1064. (uint32_t)cr);
  1065. writeErrFrame(ERR_CODE_ILLEGAL_ARG);
  1066. }
  1067. } else if (cmd_frame[0] == CMD_SET_RADIO_TX_POWER) {
  1068. if (cmd_frame[1] > MAX_LORA_TX_POWER) {
  1069. writeErrFrame(ERR_CODE_ILLEGAL_ARG);
  1070. } else {
  1071. _prefs.tx_power_dbm = cmd_frame[1];
  1072. savePrefs();
  1073. radio_set_tx_power(_prefs.tx_power_dbm);
  1074. writeOKFrame();
  1075. }
  1076. } else if (cmd_frame[0] == CMD_SET_TUNING_PARAMS) {
  1077. int i = 1;
  1078. uint32_t rx, af;
  1079. memcpy(&rx, &cmd_frame[i], 4);
  1080. i += 4;
  1081. memcpy(&af, &cmd_frame[i], 4);
  1082. i += 4;
  1083. _prefs.rx_delay_base = ((float)rx) / 1000.0f;
  1084. _prefs.airtime_factor = ((float)af) / 1000.0f;
  1085. savePrefs();
  1086. writeOKFrame();
  1087. } else if (cmd_frame[0] == CMD_GET_TUNING_PARAMS) {
  1088. uint32_t rx = _prefs.rx_delay_base * 1000, af = _prefs.airtime_factor * 1000;
  1089. int i = 0;
  1090. out_frame[i++] = RESP_CODE_TUNING_PARAMS;
  1091. memcpy(&out_frame[i], &rx, 4); i += 4;
  1092. memcpy(&out_frame[i], &af, 4); i += 4;
  1093. _serial->writeFrame(out_frame, i);
  1094. } else if (cmd_frame[0] == CMD_SET_OTHER_PARAMS) {
  1095. _prefs.manual_add_contacts = cmd_frame[1];
  1096. if (len >= 3) {
  1097. _prefs.telemetry_mode_base = cmd_frame[2] & 0x03; // v5+
  1098. _prefs.telemetry_mode_loc = (cmd_frame[2] >> 2) & 0x03;
  1099. _prefs.telemetry_mode_env = (cmd_frame[2] >> 4) & 0x03;
  1100. if (len >= 4) {
  1101. _prefs.advert_loc_policy = cmd_frame[3];
  1102. if (len >= 5) {
  1103. _prefs.multi_acks = cmd_frame[4];
  1104. }
  1105. }
  1106. }
  1107. savePrefs();
  1108. writeOKFrame();
  1109. } else if (cmd_frame[0] == CMD_REBOOT && memcmp(&cmd_frame[1], "reboot", 6) == 0) {
  1110. if (dirty_contacts_expiry) { // is there are pending dirty contacts write needed?
  1111. saveContacts();
  1112. }
  1113. board.reboot();
  1114. } else if (cmd_frame[0] == CMD_GET_BATT_AND_STORAGE) {
  1115. uint8_t reply[11];
  1116. int i = 0;
  1117. reply[i++] = RESP_CODE_BATT_AND_STORAGE;
  1118. uint16_t battery_millivolts = board.getBattMilliVolts();
  1119. uint32_t used = _store->getStorageUsedKb();
  1120. uint32_t total = _store->getStorageTotalKb();
  1121. memcpy(&reply[i], &battery_millivolts, 2); i += 2;
  1122. memcpy(&reply[i], &used, 4); i += 4;
  1123. memcpy(&reply[i], &total, 4); i += 4;
  1124. _serial->writeFrame(reply, i);
  1125. } else if (cmd_frame[0] == CMD_EXPORT_PRIVATE_KEY) {
  1126. #if ENABLE_PRIVATE_KEY_EXPORT
  1127. uint8_t reply[65];
  1128. reply[0] = RESP_CODE_PRIVATE_KEY;
  1129. self_id.writeTo(&reply[1], 64);
  1130. _serial->writeFrame(reply, 65);
  1131. #else
  1132. writeDisabledFrame();
  1133. #endif
  1134. } else if (cmd_frame[0] == CMD_IMPORT_PRIVATE_KEY && len >= 65) {
  1135. #if ENABLE_PRIVATE_KEY_IMPORT
  1136. mesh::LocalIdentity identity;
  1137. identity.readFrom(&cmd_frame[1], 64);
  1138. if (_store->saveMainIdentity(identity)) {
  1139. self_id = identity;
  1140. writeOKFrame();
  1141. // re-load contacts, to recalc shared secrets
  1142. resetContacts();
  1143. _store->loadContacts(this);
  1144. } else {
  1145. writeErrFrame(ERR_CODE_FILE_IO_ERROR);
  1146. }
  1147. #else
  1148. writeDisabledFrame();
  1149. #endif
  1150. } else if (cmd_frame[0] == CMD_SEND_RAW_DATA && len >= 6) {
  1151. int i = 1;
  1152. int8_t path_len = cmd_frame[i++];
  1153. if (path_len >= 0 && i + path_len + 4 <= len) { // minimum 4 byte payload
  1154. uint8_t *path = &cmd_frame[i];
  1155. i += path_len;
  1156. auto pkt = createRawData(&cmd_frame[i], len - i);
  1157. if (pkt) {
  1158. sendDirect(pkt, path, path_len);
  1159. writeOKFrame();
  1160. } else {
  1161. writeErrFrame(ERR_CODE_TABLE_FULL);
  1162. }
  1163. } else {
  1164. writeErrFrame(ERR_CODE_UNSUPPORTED_CMD); // flood, not supported (yet)
  1165. }
  1166. } else if (cmd_frame[0] == CMD_SEND_LOGIN && len >= 1 + PUB_KEY_SIZE) {
  1167. uint8_t *pub_key = &cmd_frame[1];
  1168. ContactInfo *recipient = lookupContactByPubKey(pub_key, PUB_KEY_SIZE);
  1169. char *password = (char *)&cmd_frame[1 + PUB_KEY_SIZE];
  1170. cmd_frame[len] = 0; // ensure null terminator in password
  1171. if (recipient) {
  1172. uint32_t est_timeout;
  1173. int result = sendLogin(*recipient, password, est_timeout);
  1174. if (result == MSG_SEND_FAILED) {
  1175. writeErrFrame(ERR_CODE_TABLE_FULL);
  1176. } else {
  1177. clearPendingReqs();
  1178. memcpy(&pending_login, recipient->id.pub_key, 4); // match this to onContactResponse()
  1179. out_frame[0] = RESP_CODE_SENT;
  1180. out_frame[1] = (result == MSG_SEND_SENT_FLOOD) ? 1 : 0;
  1181. memcpy(&out_frame[2], &pending_login, 4);
  1182. memcpy(&out_frame[6], &est_timeout, 4);
  1183. _serial->writeFrame(out_frame, 10);
  1184. }
  1185. } else {
  1186. writeErrFrame(ERR_CODE_NOT_FOUND); // contact not found
  1187. }
  1188. } else if (cmd_frame[0] == CMD_SEND_STATUS_REQ && len >= 1 + PUB_KEY_SIZE) {
  1189. uint8_t *pub_key = &cmd_frame[1];
  1190. ContactInfo *recipient = lookupContactByPubKey(pub_key, PUB_KEY_SIZE);
  1191. if (recipient) {
  1192. uint32_t tag, est_timeout;
  1193. int result = sendRequest(*recipient, REQ_TYPE_GET_STATUS, tag, est_timeout);
  1194. if (result == MSG_SEND_FAILED) {
  1195. writeErrFrame(ERR_CODE_TABLE_FULL);
  1196. } else {
  1197. clearPendingReqs();
  1198. // FUTURE: pending_status = tag; // match this in onContactResponse()
  1199. memcpy(&pending_status, recipient->id.pub_key, 4); // legacy matching scheme
  1200. out_frame[0] = RESP_CODE_SENT;
  1201. out_frame[1] = (result == MSG_SEND_SENT_FLOOD) ? 1 : 0;
  1202. memcpy(&out_frame[2], &tag, 4);
  1203. memcpy(&out_frame[6], &est_timeout, 4);
  1204. _serial->writeFrame(out_frame, 10);
  1205. }
  1206. } else {
  1207. writeErrFrame(ERR_CODE_NOT_FOUND); // contact not found
  1208. }
  1209. } else if (cmd_frame[0] == CMD_SEND_PATH_DISCOVERY_REQ && cmd_frame[1] == 0 && len >= 2 + PUB_KEY_SIZE) {
  1210. uint8_t *pub_key = &cmd_frame[2];
  1211. ContactInfo *recipient = lookupContactByPubKey(pub_key, PUB_KEY_SIZE);
  1212. if (recipient) {
  1213. uint32_t tag, est_timeout;
  1214. // 'Path Discovery' is just a special case of flood + Telemetry req
  1215. uint8_t req_data[9];
  1216. req_data[0] = REQ_TYPE_GET_TELEMETRY_DATA;
  1217. req_data[1] = ~(TELEM_PERM_BASE); // NEW: inverse permissions mask (ie. we only want BASE telemetry)
  1218. memset(&req_data[2], 0, 3); // reserved
  1219. getRNG()->random(&req_data[5], 4); // random blob to help make packet-hash unique
  1220. auto save = recipient->out_path_len; // temporarily force sendRequest() to flood
  1221. recipient->out_path_len = -1;
  1222. int result = sendRequest(*recipient, req_data, sizeof(req_data), tag, est_timeout);
  1223. recipient->out_path_len = save;
  1224. if (result == MSG_SEND_FAILED) {
  1225. writeErrFrame(ERR_CODE_TABLE_FULL);
  1226. } else {
  1227. clearPendingReqs();
  1228. pending_discovery = tag; // match this in onContactResponse()
  1229. out_frame[0] = RESP_CODE_SENT;
  1230. out_frame[1] = (result == MSG_SEND_SENT_FLOOD) ? 1 : 0;
  1231. memcpy(&out_frame[2], &tag, 4);
  1232. memcpy(&out_frame[6], &est_timeout, 4);
  1233. _serial->writeFrame(out_frame, 10);
  1234. }
  1235. } else {
  1236. writeErrFrame(ERR_CODE_NOT_FOUND); // contact not found
  1237. }
  1238. } else if (cmd_frame[0] == CMD_SEND_TELEMETRY_REQ && len >= 4 + PUB_KEY_SIZE) { // can deprecate, in favour of CMD_SEND_BINARY_REQ
  1239. uint8_t *pub_key = &cmd_frame[4];
  1240. ContactInfo *recipient = lookupContactByPubKey(pub_key, PUB_KEY_SIZE);
  1241. if (recipient) {
  1242. uint32_t tag, est_timeout;
  1243. int result = sendRequest(*recipient, REQ_TYPE_GET_TELEMETRY_DATA, tag, est_timeout);
  1244. if (result == MSG_SEND_FAILED) {
  1245. writeErrFrame(ERR_CODE_TABLE_FULL);
  1246. } else {
  1247. clearPendingReqs();
  1248. pending_telemetry = tag; // match this in onContactResponse()
  1249. out_frame[0] = RESP_CODE_SENT;
  1250. out_frame[1] = (result == MSG_SEND_SENT_FLOOD) ? 1 : 0;
  1251. memcpy(&out_frame[2], &tag, 4);
  1252. memcpy(&out_frame[6], &est_timeout, 4);
  1253. _serial->writeFrame(out_frame, 10);
  1254. }
  1255. } else {
  1256. writeErrFrame(ERR_CODE_NOT_FOUND); // contact not found
  1257. }
  1258. } else if (cmd_frame[0] == CMD_SEND_TELEMETRY_REQ && len == 4) { // 'self' telemetry request
  1259. telemetry.reset();
  1260. telemetry.addVoltage(TELEM_CHANNEL_SELF, (float)board.getBattMilliVolts() / 1000.0f);
  1261. // query other sensors -- target specific
  1262. sensors.querySensors(0xFF, telemetry);
  1263. int i = 0;
  1264. out_frame[i++] = PUSH_CODE_TELEMETRY_RESPONSE;
  1265. out_frame[i++] = 0; // reserved
  1266. memcpy(&out_frame[i], self_id.pub_key, 6);
  1267. i += 6; // pub_key_prefix
  1268. uint8_t tlen = telemetry.getSize();
  1269. memcpy(&out_frame[i], telemetry.getBuffer(), tlen);
  1270. i += tlen;
  1271. _serial->writeFrame(out_frame, i);
  1272. } else if (cmd_frame[0] == CMD_SEND_BINARY_REQ && len >= 2 + PUB_KEY_SIZE) {
  1273. uint8_t *pub_key = &cmd_frame[1];
  1274. ContactInfo *recipient = lookupContactByPubKey(pub_key, PUB_KEY_SIZE);
  1275. if (recipient) {
  1276. uint8_t *req_data = &cmd_frame[1 + PUB_KEY_SIZE];
  1277. uint32_t tag, est_timeout;
  1278. int result = sendRequest(*recipient, req_data, len - (1 + PUB_KEY_SIZE), tag, est_timeout);
  1279. if (result == MSG_SEND_FAILED) {
  1280. writeErrFrame(ERR_CODE_TABLE_FULL);
  1281. } else {
  1282. clearPendingReqs();
  1283. pending_req = tag; // match this in onContactResponse()
  1284. out_frame[0] = RESP_CODE_SENT;
  1285. out_frame[1] = (result == MSG_SEND_SENT_FLOOD) ? 1 : 0;
  1286. memcpy(&out_frame[2], &tag, 4);
  1287. memcpy(&out_frame[6], &est_timeout, 4);
  1288. _serial->writeFrame(out_frame, 10);
  1289. }
  1290. } else {
  1291. writeErrFrame(ERR_CODE_NOT_FOUND); // contact not found
  1292. }
  1293. } else if (cmd_frame[0] == CMD_HAS_CONNECTION && len >= 1 + PUB_KEY_SIZE) {
  1294. uint8_t *pub_key = &cmd_frame[1];
  1295. if (hasConnectionTo(pub_key)) {
  1296. writeOKFrame();
  1297. } else {
  1298. writeErrFrame(ERR_CODE_NOT_FOUND);
  1299. }
  1300. } else if (cmd_frame[0] == CMD_LOGOUT && len >= 1 + PUB_KEY_SIZE) {
  1301. uint8_t *pub_key = &cmd_frame[1];
  1302. stopConnection(pub_key);
  1303. writeOKFrame();
  1304. } else if (cmd_frame[0] == CMD_GET_CHANNEL && len >= 2) {
  1305. uint8_t channel_idx = cmd_frame[1];
  1306. ChannelDetails channel;
  1307. if (getChannel(channel_idx, channel)) {
  1308. int i = 0;
  1309. out_frame[i++] = RESP_CODE_CHANNEL_INFO;
  1310. out_frame[i++] = channel_idx;
  1311. strcpy((char *)&out_frame[i], channel.name);
  1312. i += 32;
  1313. memcpy(&out_frame[i], channel.channel.secret, 16);
  1314. i += 16; // NOTE: only 128-bit supported
  1315. _serial->writeFrame(out_frame, i);
  1316. } else {
  1317. writeErrFrame(ERR_CODE_NOT_FOUND);
  1318. }
  1319. } else if (cmd_frame[0] == CMD_SET_CHANNEL && len >= 2 + 32 + 32) {
  1320. writeErrFrame(ERR_CODE_UNSUPPORTED_CMD); // not supported (yet)
  1321. } else if (cmd_frame[0] == CMD_SET_CHANNEL && len >= 2 + 32 + 16) {
  1322. uint8_t channel_idx = cmd_frame[1];
  1323. ChannelDetails channel;
  1324. StrHelper::strncpy(channel.name, (char *)&cmd_frame[2], 32);
  1325. memset(channel.channel.secret, 0, sizeof(channel.channel.secret));
  1326. memcpy(channel.channel.secret, &cmd_frame[2 + 32], 16); // NOTE: only 128-bit supported
  1327. if (setChannel(channel_idx, channel)) {
  1328. saveChannels();
  1329. writeOKFrame();
  1330. } else {
  1331. writeErrFrame(ERR_CODE_NOT_FOUND); // bad channel_idx
  1332. }
  1333. } else if (cmd_frame[0] == CMD_SIGN_START) {
  1334. out_frame[0] = RESP_CODE_SIGN_START;
  1335. out_frame[1] = 0; // reserved
  1336. uint32_t len = MAX_SIGN_DATA_LEN;
  1337. memcpy(&out_frame[2], &len, 4);
  1338. _serial->writeFrame(out_frame, 6);
  1339. if (sign_data) {
  1340. free(sign_data);
  1341. }
  1342. sign_data = (uint8_t *)malloc(MAX_SIGN_DATA_LEN);
  1343. sign_data_len = 0;
  1344. } else if (cmd_frame[0] == CMD_SIGN_DATA && len > 1) {
  1345. if (sign_data == NULL || sign_data_len + (len - 1) > MAX_SIGN_DATA_LEN) {
  1346. writeErrFrame(sign_data == NULL ? ERR_CODE_BAD_STATE : ERR_CODE_TABLE_FULL); // error: too long
  1347. } else {
  1348. memcpy(&sign_data[sign_data_len], &cmd_frame[1], len - 1);
  1349. sign_data_len += (len - 1);
  1350. writeOKFrame();
  1351. }
  1352. } else if (cmd_frame[0] == CMD_SIGN_FINISH) {
  1353. if (sign_data) {
  1354. self_id.sign(&out_frame[1], sign_data, sign_data_len);
  1355. free(sign_data); // don't need sign_data now
  1356. sign_data = NULL;
  1357. out_frame[0] = RESP_CODE_SIGNATURE;
  1358. _serial->writeFrame(out_frame, 1 + SIGNATURE_SIZE);
  1359. } else {
  1360. writeErrFrame(ERR_CODE_BAD_STATE);
  1361. }
  1362. } else if (cmd_frame[0] == CMD_SEND_TRACE_PATH && len > 10 && len - 10 < MAX_PACKET_PAYLOAD-5) {
  1363. uint8_t path_len = len - 10;
  1364. uint8_t flags = cmd_frame[9];
  1365. uint8_t path_sz = flags & 0x03; // NEW v1.11+
  1366. if ((path_len >> path_sz) > MAX_PATH_SIZE || (path_len % (1 << path_sz)) != 0) { // make sure is multiple of path_sz
  1367. writeErrFrame(ERR_CODE_ILLEGAL_ARG);
  1368. } else {
  1369. uint32_t tag, auth;
  1370. memcpy(&tag, &cmd_frame[1], 4);
  1371. memcpy(&auth, &cmd_frame[5], 4);
  1372. auto pkt = createTrace(tag, auth, flags);
  1373. if (pkt) {
  1374. sendDirect(pkt, &cmd_frame[10], path_len);
  1375. uint32_t t = _radio->getEstAirtimeFor(pkt->payload_len + pkt->path_len + 2);
  1376. uint32_t est_timeout = calcDirectTimeoutMillisFor(t, path_len);
  1377. out_frame[0] = RESP_CODE_SENT;
  1378. out_frame[1] = 0;
  1379. memcpy(&out_frame[2], &tag, 4);
  1380. memcpy(&out_frame[6], &est_timeout, 4);
  1381. _serial->writeFrame(out_frame, 10);
  1382. } else {
  1383. writeErrFrame(ERR_CODE_TABLE_FULL);
  1384. }
  1385. }
  1386. } else if (cmd_frame[0] == CMD_SET_DEVICE_PIN && len >= 5) {
  1387. // get pin from command frame
  1388. uint32_t pin;
  1389. memcpy(&pin, &cmd_frame[1], 4);
  1390. // ensure pin is zero, or a valid 6 digit pin
  1391. if (pin == 0 || (pin >= 100000 && pin <= 999999)) {
  1392. _prefs.ble_pin = pin;
  1393. savePrefs();
  1394. writeOKFrame();
  1395. } else {
  1396. writeErrFrame(ERR_CODE_ILLEGAL_ARG);
  1397. }
  1398. } else if (cmd_frame[0] == CMD_GET_CUSTOM_VARS) {
  1399. out_frame[0] = RESP_CODE_CUSTOM_VARS;
  1400. char *dp = (char *)&out_frame[1];
  1401. for (int i = 0; i < sensors.getNumSettings() && dp - (char *)&out_frame[1] < 140; i++) {
  1402. if (i > 0) {
  1403. *dp++ = ',';
  1404. }
  1405. strcpy(dp, sensors.getSettingName(i));
  1406. dp = strchr(dp, 0);
  1407. *dp++ = ':';
  1408. strcpy(dp, sensors.getSettingValue(i));
  1409. dp = strchr(dp, 0);
  1410. }
  1411. _serial->writeFrame(out_frame, dp - (char *)out_frame);
  1412. } else if (cmd_frame[0] == CMD_SET_CUSTOM_VAR && len >= 4) {
  1413. cmd_frame[len] = 0;
  1414. char *sp = (char *)&cmd_frame[1];
  1415. char *np = strchr(sp, ':'); // look for separator char
  1416. if (np) {
  1417. *np++ = 0; // modify 'cmd_frame', replace ':' with null
  1418. bool success = sensors.setSettingValue(sp, np);
  1419. if (success) {
  1420. writeOKFrame();
  1421. } else {
  1422. writeErrFrame(ERR_CODE_ILLEGAL_ARG);
  1423. }
  1424. } else {
  1425. writeErrFrame(ERR_CODE_ILLEGAL_ARG);
  1426. }
  1427. } else if (cmd_frame[0] == CMD_GET_ADVERT_PATH && len >= PUB_KEY_SIZE+2) {
  1428. // FUTURE use: uint8_t reserved = cmd_frame[1];
  1429. uint8_t *pub_key = &cmd_frame[2];
  1430. AdvertPath* found = NULL;
  1431. for (int i = 0; i < ADVERT_PATH_TABLE_SIZE; i++) {
  1432. auto p = &advert_paths[i];
  1433. if (memcmp(p->pubkey_prefix, pub_key, sizeof(p->pubkey_prefix)) == 0) {
  1434. found = p;
  1435. break;
  1436. }
  1437. }
  1438. if (found) {
  1439. out_frame[0] = RESP_CODE_ADVERT_PATH;
  1440. memcpy(&out_frame[1], &found->recv_timestamp, 4);
  1441. out_frame[5] = found->path_len;
  1442. memcpy(&out_frame[6], found->path, found->path_len);
  1443. _serial->writeFrame(out_frame, 6 + found->path_len);
  1444. } else {
  1445. writeErrFrame(ERR_CODE_NOT_FOUND);
  1446. }
  1447. } else if (cmd_frame[0] == CMD_GET_STATS && len >= 2) {
  1448. uint8_t stats_type = cmd_frame[1];
  1449. if (stats_type == STATS_TYPE_CORE) {
  1450. int i = 0;
  1451. out_frame[i++] = RESP_CODE_STATS;
  1452. out_frame[i++] = STATS_TYPE_CORE;
  1453. uint16_t battery_mv = board.getBattMilliVolts();
  1454. uint32_t uptime_secs = _ms->getMillis() / 1000;
  1455. uint8_t queue_len = (uint8_t)_mgr->getOutboundCount(0xFFFFFFFF);
  1456. memcpy(&out_frame[i], &battery_mv, 2); i += 2;
  1457. memcpy(&out_frame[i], &uptime_secs, 4); i += 4;
  1458. memcpy(&out_frame[i], &_err_flags, 2); i += 2;
  1459. out_frame[i++] = queue_len;
  1460. _serial->writeFrame(out_frame, i);
  1461. } else if (stats_type == STATS_TYPE_RADIO) {
  1462. int i = 0;
  1463. out_frame[i++] = RESP_CODE_STATS;
  1464. out_frame[i++] = STATS_TYPE_RADIO;
  1465. int16_t noise_floor = (int16_t)_radio->getNoiseFloor();
  1466. int8_t last_rssi = (int8_t)radio_driver.getLastRSSI();
  1467. int8_t last_snr = (int8_t)(radio_driver.getLastSNR() * 4); // scaled by 4 for 0.25 dB precision
  1468. uint32_t tx_air_secs = getTotalAirTime() / 1000;
  1469. uint32_t rx_air_secs = getReceiveAirTime() / 1000;
  1470. memcpy(&out_frame[i], &noise_floor, 2); i += 2;
  1471. out_frame[i++] = last_rssi;
  1472. out_frame[i++] = last_snr;
  1473. memcpy(&out_frame[i], &tx_air_secs, 4); i += 4;
  1474. memcpy(&out_frame[i], &rx_air_secs, 4); i += 4;
  1475. _serial->writeFrame(out_frame, i);
  1476. } else if (stats_type == STATS_TYPE_PACKETS) {
  1477. int i = 0;
  1478. out_frame[i++] = RESP_CODE_STATS;
  1479. out_frame[i++] = STATS_TYPE_PACKETS;
  1480. uint32_t recv = radio_driver.getPacketsRecv();
  1481. uint32_t sent = radio_driver.getPacketsSent();
  1482. uint32_t n_sent_flood = getNumSentFlood();
  1483. uint32_t n_sent_direct = getNumSentDirect();
  1484. uint32_t n_recv_flood = getNumRecvFlood();
  1485. uint32_t n_recv_direct = getNumRecvDirect();
  1486. memcpy(&out_frame[i], &recv, 4); i += 4;
  1487. memcpy(&out_frame[i], &sent, 4); i += 4;
  1488. memcpy(&out_frame[i], &n_sent_flood, 4); i += 4;
  1489. memcpy(&out_frame[i], &n_sent_direct, 4); i += 4;
  1490. memcpy(&out_frame[i], &n_recv_flood, 4); i += 4;
  1491. memcpy(&out_frame[i], &n_recv_direct, 4); i += 4;
  1492. _serial->writeFrame(out_frame, i);
  1493. } else {
  1494. writeErrFrame(ERR_CODE_ILLEGAL_ARG); // invalid stats sub-type
  1495. }
  1496. } else if (cmd_frame[0] == CMD_FACTORY_RESET && memcmp(&cmd_frame[1], "reset", 5) == 0) {
  1497. bool success = _store->formatFileSystem();
  1498. if (success) {
  1499. writeOKFrame();
  1500. delay(1000);
  1501. board.reboot(); // doesn't return
  1502. } else {
  1503. writeErrFrame(ERR_CODE_FILE_IO_ERROR);
  1504. }
  1505. } else if (cmd_frame[0] == CMD_SET_FLOOD_SCOPE && len >= 2 && cmd_frame[1] == 0) {
  1506. if (len >= 2 + 16) {
  1507. memcpy(send_scope.key, &cmd_frame[2], sizeof(send_scope.key)); // set curr scope TransportKey
  1508. } else {
  1509. memset(send_scope.key, 0, sizeof(send_scope.key)); // set scope to null
  1510. }
  1511. writeOKFrame();
  1512. } else if (cmd_frame[0] == CMD_SEND_CONTROL_DATA && len >= 2 && (cmd_frame[1] & 0x80) != 0) {
  1513. auto resp = createControlData(&cmd_frame[1], len - 1);
  1514. if (resp) {
  1515. sendZeroHop(resp);
  1516. writeOKFrame();
  1517. } else {
  1518. writeErrFrame(ERR_CODE_TABLE_FULL);
  1519. }
  1520. } else {
  1521. writeErrFrame(ERR_CODE_UNSUPPORTED_CMD);
  1522. MESH_DEBUG_PRINTLN("ERROR: unknown command: %02X", cmd_frame[0]);
  1523. }
  1524. }
  1525. void MyMesh::enterCLIRescue() {
  1526. _cli_rescue = true;
  1527. cli_command[0] = 0;
  1528. Serial.println("========= CLI Rescue =========");
  1529. }
  1530. void MyMesh::checkCLIRescueCmd() {
  1531. int len = strlen(cli_command);
  1532. while (Serial.available() && len < sizeof(cli_command)-1) {
  1533. char c = Serial.read();
  1534. if (c != '\n') {
  1535. cli_command[len++] = c;
  1536. cli_command[len] = 0;
  1537. }
  1538. Serial.print(c); // echo
  1539. }
  1540. if (len == sizeof(cli_command)-1) { // command buffer full
  1541. cli_command[sizeof(cli_command)-1] = '\r';
  1542. }
  1543. if (len > 0 && cli_command[len - 1] == '\r') { // received complete line
  1544. cli_command[len - 1] = 0; // replace newline with C string null terminator
  1545. if (memcmp(cli_command, "set ", 4) == 0) {
  1546. const char* config = &cli_command[4];
  1547. if (memcmp(config, "pin ", 4) == 0) {
  1548. _prefs.ble_pin = atoi(&config[4]);
  1549. savePrefs();
  1550. Serial.printf(" > pin is now %06d\n", _prefs.ble_pin);
  1551. } else {
  1552. Serial.printf(" Error: unknown config: %s\n", config);
  1553. }
  1554. } else if (strcmp(cli_command, "rebuild") == 0) {
  1555. bool success = _store->formatFileSystem();
  1556. if (success) {
  1557. _store->saveMainIdentity(self_id);
  1558. savePrefs();
  1559. saveContacts();
  1560. saveChannels();
  1561. Serial.println(" > erase and rebuild done");
  1562. } else {
  1563. Serial.println(" Error: erase failed");
  1564. }
  1565. } else if (strcmp(cli_command, "erase") == 0) {
  1566. bool success = _store->formatFileSystem();
  1567. if (success) {
  1568. Serial.println(" > erase done");
  1569. } else {
  1570. Serial.println(" Error: erase failed");
  1571. }
  1572. } else if (memcmp(cli_command, "ls", 2) == 0) {
  1573. // get path from command e.g: "ls /adafruit"
  1574. const char *path = &cli_command[3];
  1575. bool is_fs2 = false;
  1576. if (memcmp(path, "UserData/", 9) == 0) {
  1577. path += 8; // skip "UserData"
  1578. } else if (memcmp(path, "ExtraFS/", 8) == 0) {
  1579. path += 7; // skip "ExtraFS"
  1580. is_fs2 = true;
  1581. }
  1582. Serial.printf("Listing files in %s\n", path);
  1583. // log each file and directory
  1584. File root = _store->openRead(path);
  1585. if (is_fs2 == false) {
  1586. if (root) {
  1587. File file = root.openNextFile();
  1588. while (file) {
  1589. if (file.isDirectory()) {
  1590. Serial.printf("[dir] UserData%s/%s\n", path, file.name());
  1591. } else {
  1592. Serial.printf("[file] UserData%s/%s (%d bytes)\n", path, file.name(), file.size());
  1593. }
  1594. // move to next file
  1595. file = root.openNextFile();
  1596. }
  1597. root.close();
  1598. }
  1599. }
  1600. if (is_fs2 == true || strlen(path) == 0 || strcmp(path, "/") == 0) {
  1601. if (_store->getSecondaryFS() != nullptr) {
  1602. File root2 = _store->openRead(_store->getSecondaryFS(), path);
  1603. File file = root2.openNextFile();
  1604. while (file) {
  1605. if (file.isDirectory()) {
  1606. Serial.printf("[dir] ExtraFS%s/%s\n", path, file.name());
  1607. } else {
  1608. Serial.printf("[file] ExtraFS%s/%s (%d bytes)\n", path, file.name(), file.size());
  1609. }
  1610. // move to next file
  1611. file = root2.openNextFile();
  1612. }
  1613. root2.close();
  1614. }
  1615. }
  1616. } else if (memcmp(cli_command, "cat", 3) == 0) {
  1617. // get path from command e.g: "cat /contacts3"
  1618. const char *path = &cli_command[4];
  1619. bool is_fs2 = false;
  1620. if (memcmp(path, "UserData/", 9) == 0) {
  1621. path += 8; // skip "UserData"
  1622. } else if (memcmp(path, "ExtraFS/", 8) == 0) {
  1623. path += 7; // skip "ExtraFS"
  1624. is_fs2 = true;
  1625. } else {
  1626. Serial.println("Invalid path provided, must start with UserData/ or ExtraFS/");
  1627. cli_command[0] = 0;
  1628. return;
  1629. }
  1630. // log file content as hex
  1631. File file = _store->openRead(path);
  1632. if (is_fs2 == true) {
  1633. file = _store->openRead(_store->getSecondaryFS(), path);
  1634. }
  1635. if(file){
  1636. // get file content
  1637. int file_size = file.available();
  1638. uint8_t buffer[file_size];
  1639. file.read(buffer, file_size);
  1640. // print hex
  1641. mesh::Utils::printHex(Serial, buffer, file_size);
  1642. Serial.print("\n");
  1643. file.close();
  1644. }
  1645. } else if (memcmp(cli_command, "rm ", 3) == 0) {
  1646. // get path from command e.g: "rm /adv_blobs"
  1647. const char *path = &cli_command[3];
  1648. MESH_DEBUG_PRINTLN("Removing file: %s", path);
  1649. // ensure path is not empty, or root dir
  1650. if(!path || strlen(path) == 0 || strcmp(path, "/") == 0){
  1651. Serial.println("Invalid path provided");
  1652. } else {
  1653. bool is_fs2 = false;
  1654. if (memcmp(path, "UserData/", 9) == 0) {
  1655. path += 8; // skip "UserData"
  1656. } else if (memcmp(path, "ExtraFS/", 8) == 0) {
  1657. path += 7; // skip "ExtraFS"
  1658. is_fs2 = true;
  1659. }
  1660. // remove file
  1661. bool removed;
  1662. if (is_fs2) {
  1663. MESH_DEBUG_PRINTLN("Removing file from ExtraFS: %s", path);
  1664. removed = _store->removeFile(_store->getSecondaryFS(), path);
  1665. } else {
  1666. MESH_DEBUG_PRINTLN("Removing file from UserData: %s", path);
  1667. removed = _store->removeFile(path);
  1668. }
  1669. if(removed){
  1670. Serial.println("File removed");
  1671. } else {
  1672. Serial.println("Failed to remove file");
  1673. }
  1674. }
  1675. } else if (strcmp(cli_command, "reboot") == 0) {
  1676. board.reboot(); // doesn't return
  1677. } else {
  1678. Serial.println(" Error: unknown command");
  1679. }
  1680. cli_command[0] = 0; // reset command buffer
  1681. }
  1682. }
  1683. void MyMesh::checkSerialInterface() {
  1684. size_t len = _serial->checkRecvFrame(cmd_frame);
  1685. if (len > 0) {
  1686. handleCmdFrame(len);
  1687. } else if (_iter_started // check if our ContactsIterator is 'running'
  1688. && !_serial->isWriteBusy() // don't spam the Serial Interface too quickly!
  1689. ) {
  1690. ContactInfo contact;
  1691. if (_iter.hasNext(this, contact)) {
  1692. if (contact.lastmod > _iter_filter_since) { // apply the 'since' filter
  1693. writeContactRespFrame(RESP_CODE_CONTACT, contact);
  1694. if (contact.lastmod > _most_recent_lastmod) {
  1695. _most_recent_lastmod = contact.lastmod; // save for the RESP_CODE_END_OF_CONTACTS frame
  1696. }
  1697. }
  1698. } else { // EOF
  1699. out_frame[0] = RESP_CODE_END_OF_CONTACTS;
  1700. memcpy(&out_frame[1], &_most_recent_lastmod,
  1701. 4); // include the most recent lastmod, so app can update their 'since'
  1702. _serial->writeFrame(out_frame, 5);
  1703. _iter_started = false;
  1704. }
  1705. //} else if (!_serial->isWriteBusy()) {
  1706. // checkConnections(); // TODO - deprecate the 'Connections' stuff
  1707. }
  1708. }
  1709. void MyMesh::loop() {
  1710. BaseChatMesh::loop();
  1711. if (_cli_rescue) {
  1712. checkCLIRescueCmd();
  1713. } else {
  1714. checkSerialInterface();
  1715. }
  1716. // is there are pending dirty contacts write needed?
  1717. if (dirty_contacts_expiry && millisHasNowPassed(dirty_contacts_expiry)) {
  1718. saveContacts();
  1719. dirty_contacts_expiry = 0;
  1720. }
  1721. #ifdef DISPLAY_CLASS
  1722. if (_ui) _ui->setHasConnection(_serial->isConnected());
  1723. #endif
  1724. }
  1725. bool MyMesh::advert() {
  1726. mesh::Packet* pkt;
  1727. if (_prefs.advert_loc_policy == ADVERT_LOC_NONE) {
  1728. pkt = createSelfAdvert(_prefs.node_name);
  1729. } else {
  1730. pkt = createSelfAdvert(_prefs.node_name, sensors.node_lat, sensors.node_lon);
  1731. }
  1732. if (pkt) {
  1733. sendZeroHop(pkt);
  1734. return true;
  1735. } else {
  1736. return false;
  1737. }
  1738. }