I'm seeing a screen image shifting to the right and down on every file.append command.
Here is a program demonstrating the problem.
ESP32-8048S070C module
Firmware is Annex32-S3 CAN DMT VGA HID OTG 1.70.52 qio opi LFS
Code: [Local Link Removed for Guests]
VGA.pinout 14, 21, 47, 48, 45, 9, 46, 3, 8, 16, 1, 15, 7, 6, 5, 4, 39, 40, 41, 42
VGA.delete
VGA.INIT 10
vga.image "/betweenthemountain.jpg" ' 800x480 image
VGA.SHOW
pin.mode 2, output ' backlight
pin(2) = 1
FName$ = "/text1.txt"
x = file.delete(FName$)
do
FLine$ = "This is a line of text"
for cnt = 1 to 5
file.append FName$,FLine$ + chr$(10)
pause 100
next cnt
pause 1000
loop