-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Modify the low power mode to adapt to the new version of GUI software
- Loading branch information
1 parent
700673d
commit c2370c4
Showing
25 changed files
with
1,432 additions
and
1,291 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#ifndef __ARDUCAM_SLOT_H | ||
#define __ARDUCAM_SLOT_H | ||
#include <Arduino.h> | ||
|
||
#define SerialBegin(baudRate) Serial.begin(baudRate) | ||
#define SerialWrite(ch) Serial.write(ch) | ||
#define SerialWriteBuff(buf, len) Serial.write(buf, len) | ||
#define SerialPrintf(str) Serial.print(str) | ||
#define SerialAvailable() Serial.available() | ||
#define SerialRead() Serial.read() | ||
#define delayUs(us) delayMicroseconds(us) | ||
#endif |
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
Oops, something went wrong.