-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changed timeouts for flash upload to 10 seconds.
- Loading branch information
1 parent
4506f56
commit b36cffc
Showing
10 changed files
with
66 additions
and
101 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
Binary file not shown.
Binary file not shown.
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,16 @@ | ||
:: Set current directory | ||
@echo off | ||
C: | ||
CD %~dp0 | ||
|
||
:: You need a full Python install, added to the PATH. | ||
:: If esptool.py complains about 'no module named serial.tools.list_ports' | ||
:: you may need to upgrade pyserial with: pip install pyserial | ||
|
||
@echo on | ||
|
||
python ..\esptool.py --chip esp8266 --port COM5 --baud 115200 read_flash 0 0x100000 "RTOS_v330_2100.facdump" | ||
|
||
@echo off | ||
|
||
pause |
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
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,38 +1,38 @@ | ||
; version.asm | ||
; | ||
; Auto-generated by ZXVersion.exe | ||
; On 19 Feb 2020 at 19:46 | ||
; On 21 Feb 2020 at 18:11 | ||
|
||
BuildNo macro() | ||
db "69" | ||
db "70" | ||
mend | ||
|
||
BuildNoValue equ "69" | ||
BuildNoWidth equ 0 + FW6 + FW9 | ||
BuildNoValue equ "70" | ||
BuildNoWidth equ 0 + FW7 + FW0 | ||
|
||
|
||
|
||
BuildDate macro() | ||
db "19 Feb 2020" | ||
db "21 Feb 2020" | ||
mend | ||
|
||
BuildDateValue equ "19 Feb 2020" | ||
BuildDateWidth equ 0 + FW1 + FW9 + FWSpace + FWF + FWe + FWb + FWSpace + FW2 + FW0 + FW2 + FW0 | ||
BuildDateValue equ "21 Feb 2020" | ||
BuildDateWidth equ 0 + FW2 + FW1 + FWSpace + FWF + FWe + FWb + FWSpace + FW2 + FW0 + FW2 + FW0 | ||
|
||
|
||
|
||
BuildTime macro() | ||
db "19:46" | ||
db "18:11" | ||
mend | ||
|
||
BuildTimeValue equ "19:46" | ||
BuildTimeWidth equ 0 + FW1 + FW9 + FWColon + FW4 + FW6 | ||
BuildTimeValue equ "18:11" | ||
BuildTimeWidth equ 0 + FW1 + FW8 + FWColon + FW1 + FW1 | ||
|
||
|
||
|
||
BuildTimeSecs macro() | ||
db "19:46:47" | ||
db "18:11:50" | ||
mend | ||
|
||
BuildTimeSecsValue equ "19:46:47" | ||
BuildTimeSecsWidth equ 0 + FW1 + FW9 + FWColon + FW4 + FW6 + FWColon + FW4 + FW7 | ||
BuildTimeSecsValue equ "18:11:50" | ||
BuildTimeSecsWidth equ 0 + FW1 + FW8 + FWColon + FW1 + FW1 + FWColon + FW5 + FW0 |