Commit graph

23 commits

Author SHA1 Message Date
Scott Shawcroft
7c9d043031
Merge pull request #9919 from RetiredWizard/rotationdoc
SUNTON_ESP32-2432S024C:  Add rotation settings.toml documentation
2025-01-02 13:05:34 -08:00
RetiredWizard
9858ec6b92 SUNTON_ESP32-2432S024C: Add rotation settings.toml documentation 2024-12-27 19:59:51 -05:00
RetiredWizard
ae3aa285fd environment.rst typo 2024-12-24 01:28:38 -05:00
RetiredWizard
9c74562a0a Sunton 8048S050: Configure display frequency in settings.toml 2024-12-23 23:13:14 -05:00
RetiredWizard
0d235d792e Additional rotation detail 2024-09-24 17:18:07 -04:00
RetiredWizard
df9b39f8c2 pre-commit run --all 2024-09-24 16:44:54 -04:00
RetiredWizard
d3d6a73ad9 Add board specific key documentation 2024-09-24 16:41:59 -04:00
RetiredWizard
b22a571a98 pre-commit run -all 2024-09-23 21:41:48 -04:00
RetiredWizard
18fe80d771 Update Environment Variables documentation to note possible board specific keys 2024-09-23 21:27:38 -04:00
Dan Halbert
2eb283004d
fix title underline 2023-11-10 20:27:32 -05:00
Dan Halbert
57238aa02c
Update docs/environment.rst 2023-11-10 20:25:06 -05:00
Scott Shawcroft
3e6456d7e1
Document CIRCUITPY_HEAP_START_SIZE
and remove CIRCUITPY_RESERVED_PSRAM.

Fixes #8581
2023-11-10 15:53:49 -08:00
Neradoc
bb2af51d25 document CIRCUITPY_PYSTACK_SIZE 2023-05-09 14:30:25 +02:00
Isaac Benitez
37116e6583 Fix documentation format error 2023-04-07 12:09:51 -07:00
Isaac Benitez
e38b5491f4 Add device name env variable for web workflow 2023-04-07 11:45:13 -07:00
f2032dbf0f
remove mention of _environ 2022-12-09 14:11:37 -06:00
529ec23ecb
sadly, no emoji in the docs :( hopefully this works 2022-12-08 20:07:48 -06:00
3459fe322b
Withdraw the _environ module
This existed solely for testing, so expose it a different way during
the unix coverage build

Also turn off os.getenv support on samd21.
2022-12-08 15:33:10 -06:00
ef2bfdb5db
dotenv becomes settings.toml 2022-12-08 12:44:20 -06:00
Jeff Epler
82be75adb5 Add ability to reserve psram
.. the primary user of which will be the camera, since the framebuffers
must be allocated via esp-idf allocation function and never from the
gc heap.

A board can have a default value, and the value can also be set in the
/.env file using the key CIRCUITPY_RESERVED_PSRAM with the value being
the reserved size in bytes.

Co-authored-by: Dan Halbert <halbert@adafruit.com>
2022-08-03 16:19:40 -05:00
Scott Shawcroft
78b4159448
Allow for dynamic reconfigure including port 2022-07-15 16:33:12 -07:00
Neradoc
44a91c12be add docs for dotenv BLE 2022-07-14 20:45:01 +02:00
Scott Shawcroft
6446010753
Wi-Fi autoconnect and title bar status
This adds support for CIRCUITPY_WIFI_SSID and CIRCUITPY_WIFI_PASSWORD
in `/.env`. When both are defined, CircuitPython will attempt to
connect to the network even when user code isn't running. If the
user code attempts to a network with the same SSID, it will return
immediately. Connecting to another SSID will disconnect from the
auto-connected network. If the user code initiates the connection,
then it will be shutdown after user code exits. (Should match <8
behavior.)

This PR also reworks the default displayio terminal. It now supports
a title bar TileGrid in addition to the (newly renamed) scroll area.
The default title bar is the top row of the display and is positioned
to the right of the Blinka logo when it is enabled. The scroll area
is now below the Blinka logo.

The Wi-Fi auto-connect code now uses the title bar to show its
state including the IP address when connected. It does this through
the "standard" OSC control sequence `ESC ] 0 ; <s> ESC \` where <s>
is the title bar string. This is commonly supported by terminals
so it should work over USB and UART as well.

Related to #6174
2022-06-09 14:55:54 -07:00