-
Notifications
You must be signed in to change notification settings - Fork 964
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
Showing
33 changed files
with
658 additions
and
289 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
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,22 +1,22 @@ | ||
version: 0.1 | ||
cli: | ||
version: 1.22.6 | ||
version: 1.22.7 | ||
plugins: | ||
sources: | ||
- id: trunk | ||
ref: v1.6.3 | ||
ref: v1.6.4 | ||
uri: https://github.com/trunk-io/plugins | ||
lint: | ||
enabled: | ||
- [email protected].6 | ||
- [email protected].12 | ||
- [email protected] | ||
- [email protected] | ||
- [email protected] | ||
- [email protected].1 | ||
- [email protected].9 | ||
- [email protected] | ||
#- [email protected] | ||
- [email protected] | ||
- ruff@0.6.8 | ||
- ruff@0.7.0 | ||
- [email protected] | ||
- [email protected] | ||
- [email protected] | ||
|
@@ -26,9 +26,9 @@ lint: | |
- [email protected] | ||
- [email protected] | ||
- [email protected] | ||
- black@24.8.0 | ||
- black@24.10.0 | ||
- git-diff-check | ||
- gitleaks@8.20.0 | ||
- gitleaks@8.21.1 | ||
- [email protected] | ||
- [email protected] | ||
ignore: | ||
|
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 |
---|---|---|
|
@@ -23,4 +23,5 @@ lib_deps= | |
rweather/Crypto@^0.4.0 | ||
|
||
lib_ignore = | ||
BluetoothOTA | ||
BluetoothOTA | ||
lvgl |
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
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,18 @@ | ||
Display: | ||
|
||
### Waveshare 2.8inch RPi LCD | ||
Panel: ST7789 | ||
CS: 8 | ||
DC: 22 # Data/Command pin | ||
Backlight: 18 | ||
Width: 240 | ||
Height: 320 | ||
Reset: 27 | ||
Rotate: true | ||
Invert: true | ||
|
||
Touchscreen: | ||
### Note, at least for now, the touchscreen must have a CS pin defined, even if you let Linux manage the CS switching. | ||
Module: XPT2046 # Waveshare 2.8inch | ||
CS: 7 | ||
IRQ: 17 |
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,8 @@ | ||
Lora: | ||
Module: sx1262 # Waveshare SX126X XXXM | ||
DIO2_AS_RF_SWITCH: true | ||
CS: 21 | ||
IRQ: 16 | ||
Busy: 20 | ||
Reset: 18 | ||
SX126X_ANT_SW: 6 |
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,46 @@ | ||
{ | ||
"build": { | ||
"arduino": { | ||
"ldscript": "esp32s3_out.ld", | ||
"memory_type": "qio_opi", | ||
"partitions": "default_8MB.csv" | ||
}, | ||
"core": "esp32", | ||
"extra_flags": [ | ||
"-DBOARD_HAS_PSRAM", | ||
"-DUNPHONE_SPIN=9", | ||
"-DARDUINO_USB_CDC_ON_BOOT=1", | ||
"-DARDUINO_USB_MODE=0", | ||
"-DARDUINO_RUNNING_CORE=1", | ||
"-DARDUINO_EVENT_RUNNING_CORE=1" | ||
], | ||
"f_cpu": "240000000L", | ||
"f_flash": "80000000L", | ||
"flash_mode": "qio", | ||
"hwids": [ | ||
["0x16D0", "0x1178"], | ||
["0x303a", "0x1001"] | ||
], | ||
"mcu": "esp32s3", | ||
"variant": "unphone" | ||
}, | ||
"connectivity": ["wifi", "bluetooth", "lora"], | ||
"debug": { | ||
"default_tool": "esp-builtin", | ||
"onboard_tools": ["esp-builtin"], | ||
"openocd_target": "esp32s3.cfg" | ||
}, | ||
"frameworks": ["arduino", "espidf"], | ||
"name": "unPhone", | ||
"upload": { | ||
"flash_size": "8MB", | ||
"maximum_ram_size": 327680, | ||
"maximum_size": 8323072, | ||
"use_1200bps_touch": true, | ||
"wait_for_upload_port": true, | ||
"require_upload_port": true, | ||
"speed": 921600 | ||
}, | ||
"url": "https://unphone.net/", | ||
"vendor": "University of Sheffield" | ||
} |
Submodule protobufs
updated
2 files
+1 −0 | meshtastic/device_ui.options | |
+51 −12 | meshtastic/device_ui.proto |
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
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.