-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6c5a5c0
commit b88280a
Showing
5 changed files
with
13 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
#include "mt_internals.h" | ||
#include "mt_serial.h" | ||
|
||
#ifdef MT_SOFTWARESERIAL_SUPPORTED | ||
#include <SoftwareSerial.h> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#include <Arduino.h> | ||
|
||
size_t mt_serial_check_radio(char * buf, size_t space_left); | ||
bool mt_serial_send_radio(const char * buf, size_t len); | ||
bool mt_serial_loop(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
#include "mt_wifi.h" | ||
#ifdef MT_WIFI_SUPPORTED | ||
|
||
#include <WiFi101.h> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#include <Arduino.h> | ||
|
||
bool mt_wifi_loop(uint32_t now); | ||
size_t mt_wifi_check_radio(char * buf, size_t space_left); | ||
bool mt_wifi_send_radio(const char * buf, size_t len); | ||
void mt_wifi_reset_idle_timeout(uint32_t now); |