-
Notifications
You must be signed in to change notification settings - Fork 6.7k
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
Add board "Lilygo TTGO T7 V1.5" #81494
base: main
Are you sure you want to change the base?
Conversation
Hello @kaessert, and thank you very much for your first pull request to the Zephyr project! |
4b6887f
to
7da42be
Compare
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.
Resolution of this image and the file size needs to come down, a lot. It also needs to be in webp format, then once it is, put it through https://tinypng.com/
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.
I shrank the image further, i hope it is small enough now
7da42be
to
9deba6d
Compare
Thank you so much for your review @nordicjm ! I addressed the comments. |
config ESP_WIFI_MAX_THREAD_PRIORITY | ||
int "ESP WiFi Maximum Thread Priority" | ||
default 3 |
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.
Don't know what this is but it can go
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.
done
config BOARD_TTGO_T7V1_5 | ||
select SOC_ESP32 |
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 does not go in this file, it should be Kconfig.ttgo_t7v1_5
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.
done
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.
Image is way too big
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.
Reduced it further, I hope 60kb is okay
boards/lilygo/ttgo_t7v1_5/Kconfig
Outdated
|
||
config HEAP_MEM_POOL_ADD_SIZE_BOARD | ||
int | ||
default 65535 if WIFI && BT |
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.
@kaessert, let this be only default 4096
instead. You can check other esp32-based boards as reference.
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.
done
.. _ttgo_t7v1_5: | ||
|
||
Lilygo TTGO T7 V1.5 | ||
################# |
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.
Change the 4 lines above to:
.. zephyr:board:: ttgo_t7v1_5
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.
done
- JST GH 2-pin battery connector | ||
- LED | ||
|
||
.. figure:: img/ttgo_t7v1_5.webp |
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.
You can remove this whole figure entry here (documentation will automatically add it). Please, decrease image size as well.
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.
done
status = "okay"; | ||
}; | ||
|
||
&flash0 { |
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.
As you included #include <espressif/esp32/esp32_wrover_e_n4r8.dtsi>
, you can remove all this flash0
entry from here.
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.
done
9deba6d
to
f19d4ba
Compare
Thank you so much for your patience 🙏 |
Can you squash the commits down to one commit? |
f19d4ba
to
c8edb31
Compare
@nordicjm Sure, squashed |
c8edb31
to
944d46c
Compare
Add support for board "Lilygo TTGO T7 V1.5" Signed-off-by: Tobias Kässer <[email protected]>
944d46c
to
7c84a78
Compare
This PR adds support for the Lilygo TTGO T7 V1.5 baord. It's my first pr of that kind so please be gentle with me :)