Skip to content

Commit e145cba

Browse files
committed
Remaining fixups from open PRs.
1 parent bead8c0 commit e145cba

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,4 @@ local/
3434
*.elf
3535
*.map
3636
**/.DS_Store
37+
mkspiffs/

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
* **getFontCharacters** Get all font's characters to buffer
4444
* **String write function**:
4545
* **TFT_print** Write text to display.
46-
* Strings can be printed at **any angle**. Rotation of the displayed text depends on *font_ratate* variable (0~360)
46+
* Strings can be printed at **any angle**. Rotation of the displayed text depends on *tft_font_rotate* variable (0~360)
4747
* if *font_transparent* variable is set to 1, no background pixels will be printed
4848
* If the text does not fit the screen/window width it will be clipped ( if *text_wrap=0* ), or continued on next line ( if *text_wrap=1* )
4949
* Two special characters are allowed in strings: *\r* CR (0x0D), clears the display to EOL, *\n* LF (ox0A), continues to the new line, x=0
@@ -107,7 +107,7 @@
107107

108108
* **Global wariables**
109109
* **tft_orientation** current screen orientation
110-
* **tft_font_ratate** current font rotate angle (0~395)
110+
* **tft_font_rotate** current font rotate angle (0~395)
111111
* **tft_font_transparent** if not 0 draw fonts transparent
112112
* **tft_font_forceFixed** if not zero force drawing proportional fonts with fixed width
113113
* **tft_text_wrap** if not 0 wrap long text to the new line, else clip

components/spiffs/Kconfig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ menu "TFT SPIFFS"
22

33
config SPIFFS_BASE_ADDR
44
int "SPIFFS Base address"
5-
range 1048576 33546240
5+
range 0x100000 0x1FFE000
66
default 0x180000
77
help
88
Starting address of the SPIFFS area in ESP32 Flash
@@ -14,7 +14,7 @@ config SPIFFS_SIZE
1414

1515
config SPIFFS_LOG_BLOCK_SIZE
1616
int "SPIFFS Logical block size"
17-
range 4098 65536
17+
range 4096 65536
1818
default 8192
1919

2020
config SPIFFS_LOG_PAGE_SIZE

0 commit comments

Comments
 (0)