-
Notifications
You must be signed in to change notification settings - Fork 1k
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
Tidy Wireless Paper variant files #4238
Merged
Merged
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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,47 +1,41 @@ | ||
#define LED_PIN 18 | ||
#define BUTTON_PIN 0 | ||
|
||
// Enable bus for external periherals | ||
// I2C | ||
#define I2C_SDA SDA | ||
#define I2C_SCL SCL | ||
|
||
// Display (E-Ink) | ||
#define USE_EINK | ||
|
||
/* | ||
* eink display pins | ||
*/ | ||
#define PIN_EINK_CS 4 | ||
#define PIN_EINK_BUSY 7 | ||
#define PIN_EINK_DC 5 | ||
#define PIN_EINK_RES 6 | ||
#define PIN_EINK_SCLK 3 | ||
#define PIN_EINK_MOSI 2 | ||
|
||
/* | ||
* SPI interfaces | ||
*/ | ||
// SPI | ||
#define SPI_INTERFACES_COUNT 2 | ||
#define PIN_SPI_MISO 10 // MISO | ||
#define PIN_SPI_MOSI 11 // MOSI | ||
#define PIN_SPI_SCK 9 // SCK | ||
|
||
#define PIN_SPI_MISO 10 // MISO P0.17 | ||
#define PIN_SPI_MOSI 11 // MOSI P0.15 | ||
#define PIN_SPI_SCK 9 // SCK P0.13 | ||
|
||
#define VEXT_ENABLE 45 // active low, powers the oled display and the lora antenna boost | ||
#define BUTTON_PIN 0 | ||
|
||
// Power | ||
#define VEXT_ENABLE 45 // Active low, powers the E-Ink display | ||
#define ADC_CTRL 19 | ||
#define BATTERY_PIN 20 | ||
#define ADC_CHANNEL ADC2_GPIO20_CHANNEL | ||
#define ADC_MULTIPLIER 2 // Voltage divider is roughly 1:1 | ||
#define BAT_MEASURE_ADC_UNIT 2 // Use ADC2 | ||
#define ADC_ATTENUATION ADC_ATTEN_DB_11 // Voltage divider output is quite high | ||
#define ADC_ATTENUATION ADC_ATTEN_DB_12 // Voltage divider output is quite high | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
|
||
// LoRa | ||
#define USE_SX1262 | ||
|
||
#define LORA_DIO0 -1 // a No connect on the SX1262 module | ||
#define LORA_RESET 12 | ||
#define LORA_DIO1 14 // SX1262 IRQ | ||
#define LORA_DIO2 13 // SX1262 BUSY | ||
#define LORA_DIO3 // Not connected on PCB, but internally on the TTGO SX1262, if DIO3 is high the TXCO is enabled | ||
|
||
#define LORA_SCK 9 | ||
#define LORA_MISO 11 | ||
|
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This constant actually isn't used by Meshtastic code-base. Board schematic does show DIO1 connected to GPIO14 though, not DIO0.