Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tether API + mm support #2832

Merged
merged 4 commits into from
Oct 10, 2024
Merged

Tether API + mm support #2832

merged 4 commits into from
Oct 10, 2024

Conversation

avtolstoy
Copy link
Member

@avtolstoy avtolstoy commented Oct 4, 2024

Testing

https://www.notion.so/particle/6-2-0-Tethering-testing-118d40caa5dc807ea313de75973a049c?pvs=4

Test application

#include "application.h"

SerialLogHandler dbg(115200, LOG_LEVEL_ALL);

SYSTEM_MODE(SEMI_AUTOMATIC);

SYSTEM_THREAD(ENABLED);

/* executes once at startup */
void setup() {
    // waitUntil(Serial.isConnected);
    // Enable Cellular
    Cellular.on();
    Cellular.connect();
    // Bind Tether interface to Serial1 @ 921600 baudrate with default settings (8n1 + RTS/CTS flow control)
    Tether.bind(TetherSerialConfig().baudrate(921600).serial(Serial1));
    // Turn on Tether interface and bring it up
    Tether.on();
    Tether.connect();
}

void loop() {

}

@avtolstoy avtolstoy added this to the 6.2.0 milestone Oct 4, 2024
@avtolstoy avtolstoy force-pushed the feature/tether-api branch 2 times, most recently from dc21105 to c6700d1 Compare October 7, 2024 15:32
@technobly technobly merged commit 4c8dacc into develop Oct 10, 2024
13 checks passed
@technobly technobly deleted the feature/tether-api branch October 10, 2024 21:14
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants