main.cpp 61 KB

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