#include // needed for PlatformIO #include #if defined(NRF52_PLATFORM) #include #elif defined(ESP32) #include #endif #define RADIOLIB_STATIC_ONLY 1 #include #include #include #include #include #include #include /* ---------------------------------- CONFIGURATION ------------------------------------- */ #ifndef LORA_FREQ #define LORA_FREQ 915.0 #endif #ifndef LORA_BW #define LORA_BW 250 #endif #ifndef LORA_SF #define LORA_SF 10 #endif #ifndef LORA_CR #define LORA_CR 5 #endif #ifndef LORA_TX_POWER #define LORA_TX_POWER 20 #endif #ifndef MAX_CONTACTS #define MAX_CONTACTS 100 #endif #include #define SEND_TIMEOUT_BASE_MILLIS 300 #define FLOOD_SEND_TIMEOUT_FACTOR 16.0f #define DIRECT_SEND_PERHOP_FACTOR 4.0f #define DIRECT_SEND_PERHOP_EXTRA_MILLIS 200 #define PUBLIC_GROUP_PSK "izOH6cXN6mrJ5e26oRXNcg==" #if defined(HELTEC_LORA_V3) #include #include static HeltecV3Board board; #elif defined(ARDUINO_XIAO_ESP32C3) #include #include #include static XiaoC3Board board; #elif defined(SEEED_XIAO_S3) #include #include static ESP32Board board; #elif defined(RAK_4631) #include #include static RAK4631Board board; #else #error "need to provide a 'board' object" #endif // Believe it or not, this std C function is busted on some platforms! static uint32_t _atoi(const char* sp) { uint32_t n = 0; while (*sp && *sp >= '0' && *sp <= '9') { n *= 10; n += (*sp++ - '0'); } return n; } /* -------------------------------------------------------------------------------------- */ class MyMesh : public BaseChatMesh, ContactVisitor { FILESYSTEM* _fs; uint32_t expected_ack_crc; mesh::GroupChannel* _public; unsigned long last_msg_sent; ContactInfo* curr_recipient; char command[MAX_TEXT_LEN+1]; const char* getTypeName(uint8_t type) const { if (type == ADV_TYPE_CHAT) return "Chat"; if (type == ADV_TYPE_REPEATER) return "Repeater"; if (type == ADV_TYPE_ROOM) return "Room"; return "??"; // unknown } void loadContacts() { if (_fs->exists("/contacts")) { File file = _fs->open("/contacts"); if (file) { bool full = false; while (!full) { ContactInfo c; uint8_t pub_key[32]; uint8_t unused; uint32_t reserved; bool success = (file.read(pub_key, 32) == 32); success = success && (file.read((uint8_t *) &c.name, 32) == 32); success = success && (file.read(&c.type, 1) == 1); success = success && (file.read(&c.flags, 1) == 1); success = success && (file.read(&unused, 1) == 1); success = success && (file.read((uint8_t *) &reserved, 4) == 4); success = success && (file.read((uint8_t *) &c.out_path_len, 1) == 1); success = success && (file.read((uint8_t *) &c.last_advert_timestamp, 4) == 4); success = success && (file.read(c.out_path, 64) == 64); if (!success) break; // EOF c.id = mesh::Identity(pub_key); c.lastmod = 0; if (!addContact(c)) full = true; } file.close(); } } } void saveContacts() { #if defined(NRF52_PLATFORM) File file = _fs->open("/contacts", FILE_O_WRITE); if (file) { file.seek(0); file.truncate(); } #else File file = _fs->open("/contacts", "w", true); #endif if (file) { ContactsIterator iter; ContactInfo c; uint8_t unused = 0; uint32_t reserved = 0; while (iter.hasNext(this, c)) { bool success = (file.write(c.id.pub_key, 32) == 32); success = success && (file.write((uint8_t *) &c.name, 32) == 32); success = success && (file.write(&c.type, 1) == 1); success = success && (file.write(&c.flags, 1) == 1); success = success && (file.write(&unused, 1) == 1); success = success && (file.write((uint8_t *) &reserved, 4) == 4); success = success && (file.write((uint8_t *) &c.out_path_len, 1) == 1); success = success && (file.write((uint8_t *) &c.last_advert_timestamp, 4) == 4); success = success && (file.write(c.out_path, 64) == 64); if (!success) break; // write failed } file.close(); } } void setClock(uint32_t timestamp) { uint32_t curr = getRTCClock()->getCurrentTime(); if (timestamp > curr) { getRTCClock()->setCurrentTime(timestamp); Serial.println(" (OK - clock set!)"); } else { Serial.println(" (ERR: clock cannot go backwards)"); } } protected: void onDiscoveredContact(ContactInfo& contact, bool is_new) override { // TODO: if not in favs, prompt to add as fav(?) Serial.printf("ADVERT from -> %s\n", contact.name); Serial.printf(" type: %s\n", getTypeName(contact.type)); Serial.print(" public key: "); mesh::Utils::printHex(Serial, contact.id.pub_key, PUB_KEY_SIZE); Serial.println(); saveContacts(); } void onContactPathUpdated(const ContactInfo& contact) override { Serial.printf("PATH to: %s, path_len=%d\n", contact.name, (int32_t) contact.out_path_len); saveContacts(); } bool processAck(const uint8_t *data) override { if (memcmp(data, &expected_ack_crc, 4) == 0) { // got an ACK from recipient Serial.printf(" Got ACK! (round trip: %d millis)\n", _ms->getMillis() - last_msg_sent); // NOTE: the same ACK can be received multiple times! expected_ack_crc = 0; // reset our expected hash, now that we have received ACK return true; } //uint32_t crc; //memcpy(&crc, data, 4); //MESH_DEBUG_PRINTLN("unknown ACK received: %08X (expected: %08X)", crc, expected_ack_crc); return false; } void onMessageRecv(const ContactInfo& from, uint8_t path_len, uint32_t sender_timestamp, const char *text) override { Serial.printf("(%s) MSG -> from %s\n", path_len == 0xFF ? "DIRECT" : "FLOOD", from.name); Serial.printf(" %s\n", text); if (strcmp(text, "clock sync") == 0) { // special text command setClock(sender_timestamp + 1); } } void onChannelMessageRecv(const mesh::GroupChannel& channel, int in_path_len, uint32_t timestamp, const char *text) override { if (in_path_len < 0) { Serial.printf("PUBLIC CHANNEL MSG -> (Direct!)\n"); } else { Serial.printf("PUBLIC CHANNEL MSG -> (Flood) hops %d\n", in_path_len); } Serial.printf(" %s\n", text); } uint32_t calcFloodTimeoutMillisFor(uint32_t pkt_airtime_millis) const override { return SEND_TIMEOUT_BASE_MILLIS + (FLOOD_SEND_TIMEOUT_FACTOR * pkt_airtime_millis); } uint32_t calcDirectTimeoutMillisFor(uint32_t pkt_airtime_millis, uint8_t path_len) const override { return SEND_TIMEOUT_BASE_MILLIS + ( (pkt_airtime_millis*DIRECT_SEND_PERHOP_FACTOR + DIRECT_SEND_PERHOP_EXTRA_MILLIS) * (path_len + 1)); } void onSendTimeout() override { Serial.println(" ERROR: timed out, no ACK."); } public: char self_name[sizeof(ContactInfo::name)]; MyMesh(RadioLibWrapper& radio, mesh::RNG& rng, mesh::RTCClock& rtc, SimpleMeshTables& tables) : BaseChatMesh(radio, *new ArduinoMillis(), rng, rtc, *new StaticPoolPacketManager(16), tables) { command[0] = 0; curr_recipient = NULL; } void begin(FILESYSTEM& fs) { _fs = &fs; BaseChatMesh::begin(); strcpy(self_name, "UNSET"); IdentityStore store(fs, "/identity"); if (!store.load("_main", self_id, self_name, sizeof(self_name))) { self_id = mesh::LocalIdentity(getRNG()); // create new random identity store.save("_main", self_id); } loadContacts(); _public = addChannel(PUBLIC_GROUP_PSK); // pre-configure Andy's public channel } void showWelcome() { Serial.println("===== MeshCore Chat Terminal ====="); Serial.println(); Serial.printf("WELCOME %s\n", self_name); Serial.println(" (enter 'help' for basic commands)"); Serial.println(); } // ContactVisitor void onContactVisit(const ContactInfo& contact) override { Serial.printf(" %s - ", contact.name); char tmp[40]; int32_t secs = contact.last_advert_timestamp - getRTCClock()->getCurrentTime(); AdvertTimeHelper::formatRelativeTimeDiff(tmp, secs, false); Serial.println(tmp); } void handleCommand(const char* command) { while (*command == ' ') command++; // skip leading spaces if (memcmp(command, "send ", 5) == 0) { if (curr_recipient) { const char *text = &command[5]; int result = sendMessage(*curr_recipient, 0, text, expected_ack_crc); if (result == MSG_SEND_FAILED) { Serial.println(" ERROR: unable to send."); } else { last_msg_sent = _ms->getMillis(); Serial.printf(" (message sent - %s)\n", result == MSG_SEND_SENT_FLOOD ? "FLOOD" : "DIRECT"); } } else { Serial.println(" ERROR: no recipient selected (use 'to' cmd)."); } } else if (memcmp(command, "public ", 7) == 0) { // send GroupChannel msg uint8_t temp[5+MAX_TEXT_LEN+32]; uint32_t timestamp = getRTCClock()->getCurrentTime(); memcpy(temp, ×tamp, 4); // mostly an extra blob to help make packet_hash unique temp[4] = 0; // attempt and flags sprintf((char *) &temp[5], "%s: %s", self_name, &command[7]); // : temp[5 + MAX_TEXT_LEN] = 0; // truncate if too long int len = strlen((char *) &temp[5]); auto pkt = createGroupDatagram(PAYLOAD_TYPE_GRP_TXT, *_public, temp, 5 + len); if (pkt) { sendFlood(pkt); Serial.println(" Sent."); } else { Serial.println(" ERROR: unable to send"); } } else if (memcmp(command, "list", 4) == 0) { // show Contact list, by most recent int n = 0; if (command[4] == ' ') { // optional param, last 'N' n = atoi(&command[5]); } scanRecentContacts(n, this); } else if (strcmp(command, "clock") == 0) { // show current time uint32_t now = getRTCClock()->getCurrentTime(); DateTime dt = DateTime(now); Serial.printf( "%02d:%02d - %d/%d/%d UTC\n", dt.hour(), dt.minute(), dt.day(), dt.month(), dt.year()); } else if (memcmp(command, "name ", 5) == 0) { // set name strncpy(self_name, &command[5], sizeof(self_name)-1); self_name[sizeof(self_name)-1] = 0; IdentityStore store(*_fs, "/identity"); // update IdentityStore store.save("_main", self_id, self_name); } else if (memcmp(command, "time ", 5) == 0) { // set time (to epoch seconds) uint32_t secs = _atoi(&command[5]); setClock(secs); } else if (memcmp(command, "to ", 3) == 0) { // set current recipient curr_recipient = searchContactsByPrefix(&command[3]); if (curr_recipient) { Serial.printf(" Recipient %s now selected.\n", curr_recipient->name); } else { Serial.println(" Error: Name prefix not found."); } } else if (strcmp(command, "to") == 0) { // show current recipient if (curr_recipient) { Serial.printf(" Current: %s\n", curr_recipient->name); } else { Serial.println(" Err: no recipient selected"); } } else if (strcmp(command, "advert") == 0) { auto pkt = createSelfAdvert(self_name); if (pkt) { sendZeroHop(pkt); Serial.println(" (advert sent, zero hop)."); } else { Serial.println(" ERR: unable to send"); } } else if (strcmp(command, "reset path") == 0) { if (curr_recipient) { resetPathTo(*curr_recipient); saveContacts(); Serial.println(" Done."); } } else if (memcmp(command, "help", 4) == 0) { Serial.printf("Hello %s, Commands:\n", self_name); Serial.println(" name "); Serial.println(" clock"); Serial.println(" time "); Serial.println(" list {n}"); Serial.println(" to "); Serial.println(" to"); Serial.println(" send "); Serial.println(" advert"); Serial.println(" reset path"); Serial.println(" public "); } else { Serial.print(" ERROR: unknown command: "); Serial.println(command); } } void loop() { BaseChatMesh::loop(); int len = strlen(command); while (Serial.available() && len < sizeof(command)-1) { char c = Serial.read(); if (c != '\n') { command[len++] = c; command[len] = 0; } Serial.print(c); } if (len == sizeof(command)-1) { // command buffer full command[sizeof(command)-1] = '\r'; } if (len > 0 && command[len - 1] == '\r') { // received complete line command[len - 1] = 0; // replace newline with C string null terminator handleCommand(command); command[0] = 0; // reset command buffer } } }; #if defined(NRF52_PLATFORM) RADIO_CLASS radio = new Module(P_LORA_NSS, P_LORA_DIO_1, P_LORA_RESET, P_LORA_BUSY, SPI); #elif defined(P_LORA_SCLK) SPIClass spi; RADIO_CLASS radio = new Module(P_LORA_NSS, P_LORA_DIO_1, P_LORA_RESET, P_LORA_BUSY, spi); #else RADIO_CLASS radio = new Module(P_LORA_NSS, P_LORA_DIO_1, P_LORA_RESET, P_LORA_BUSY); #endif StdRNG fast_rng; SimpleMeshTables tables; MyMesh the_mesh(*new WRAPPER_CLASS(radio, board), fast_rng, *new VolatileRTCClock(), tables); void halt() { while (1) ; } void setup() { Serial.begin(115200); board.begin(); #ifdef SX126X_DIO3_TCXO_VOLTAGE float tcxo = SX126X_DIO3_TCXO_VOLTAGE; #else float tcxo = 1.6f; #endif #if defined(NRF52_PLATFORM) SPI.setPins(P_LORA_MISO, P_LORA_SCLK, P_LORA_MOSI); SPI.begin(); #elif defined(P_LORA_SCLK) spi.begin(P_LORA_SCLK, P_LORA_MISO, P_LORA_MOSI); #endif int status = radio.begin(LORA_FREQ, LORA_BW, LORA_SF, LORA_CR, RADIOLIB_SX126X_SYNC_WORD_PRIVATE, LORA_TX_POWER, 8, tcxo); if (status != RADIOLIB_ERR_NONE) { Serial.print("ERROR: radio init failed: "); Serial.println(status); halt(); } radio.setCRC(0); #ifdef SX126X_CURRENT_LIMIT radio.setCurrentLimit(SX126X_CURRENT_LIMIT); #endif #ifdef SX126X_DIO2_AS_RF_SWITCH radio.setDio2AsRfSwitch(SX126X_DIO2_AS_RF_SWITCH); #endif fast_rng.begin(radio.random(0x7FFFFFFF)); #if defined(NRF52_PLATFORM) InternalFS.begin(); the_mesh.begin(InternalFS); #elif defined(ESP32) SPIFFS.begin(true); the_mesh.begin(SPIFFS); #else #error "need to define filesystem" #endif the_mesh.showWelcome(); // send out initial Advertisement to the mesh auto pkt = the_mesh.createSelfAdvert(the_mesh.self_name); if (pkt) { the_mesh.sendFlood(pkt, 1200); // add slight delay } } void loop() { the_mesh.loop(); }