Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
fb52c81e52 |
4
.gitignore
vendored
4
.gitignore
vendored
@ -1,2 +1,6 @@
|
||||
*.pyc
|
||||
*.spec
|
||||
|
||||
/fw/*
|
||||
/dist/
|
||||
/build/
|
||||
|
||||
73
arduino/control/control.ino
Normal file
73
arduino/control/control.ino
Normal file
@ -0,0 +1,73 @@
|
||||
const int PIN_PG = 2; // GPIO 2
|
||||
const int PIN_RESET = 4; // GPIO 4
|
||||
|
||||
String inputCommand = "";
|
||||
|
||||
void setup() {
|
||||
Serial.begin(115200);
|
||||
delay(1000); // give some time for Serial to attach
|
||||
|
||||
pinMode(PIN_PG, OUTPUT);
|
||||
digitalWrite(PIN_PG, LOW);
|
||||
|
||||
pinMode(PIN_RESET, INPUT);
|
||||
|
||||
Serial.println("Booting...");
|
||||
Serial.println("Ready. Commands: 'pg 1', 'pg 0', 'reset'");
|
||||
}
|
||||
|
||||
void loop() {
|
||||
// Heartbeat
|
||||
static unsigned long lastBeat = 0;
|
||||
if (millis() - lastBeat > 2000) {
|
||||
lastBeat = millis();
|
||||
}
|
||||
|
||||
while (Serial.available() > 0) {
|
||||
char c = Serial.read();
|
||||
|
||||
// Echo back what we received so you can see it
|
||||
Serial.write(c);
|
||||
|
||||
// Check for end of line
|
||||
if (c == '\n' || c == '\r') {
|
||||
if (inputCommand.length() > 0) {
|
||||
Serial.print("\nReceived command: [");
|
||||
Serial.print(inputCommand);
|
||||
Serial.println("]");
|
||||
|
||||
handleCommand(inputCommand);
|
||||
inputCommand = "";
|
||||
}
|
||||
} else {
|
||||
inputCommand += c;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void handleCommand(String cmd) {
|
||||
cmd.trim(); // remove spaces/newlines
|
||||
|
||||
if (cmd == "pg 1") {
|
||||
pinMode(PIN_PG, OUTPUT);
|
||||
digitalWrite(PIN_PG, HIGH);
|
||||
Serial.println("PG -> HIGH");
|
||||
|
||||
} else if (cmd == "pg 0") {
|
||||
pinMode(PIN_PG, OUTPUT);
|
||||
digitalWrite(PIN_PG, LOW);
|
||||
Serial.println("PG -> LOW");
|
||||
|
||||
} else if (cmd == "reset") {
|
||||
Serial.println("Reset sequence on GPIO 4");
|
||||
pinMode(PIN_RESET, OUTPUT);
|
||||
digitalWrite(PIN_RESET, LOW);
|
||||
delay(500); // 0.5 sec
|
||||
pinMode(PIN_RESET, INPUT);
|
||||
Serial.println("GPIO 4 back to INPUT");
|
||||
|
||||
} else {
|
||||
Serial.print("Unknown command: ");
|
||||
Serial.println(cmd);
|
||||
}
|
||||
}
|
||||
@ -1,5 +1,5 @@
|
||||
(['C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\flash.py'],
|
||||
['C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2'],
|
||||
(['C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\flash.py'],
|
||||
['C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3'],
|
||||
[],
|
||||
[('C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\site-packages\\numpy\\_pyinstaller',
|
||||
0),
|
||||
@ -25,7 +25,7 @@
|
||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_inspect.py',
|
||||
'PYSOURCE'),
|
||||
('flash',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\flash.py',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\flash.py',
|
||||
'PYSOURCE')],
|
||||
[('zipfile',
|
||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\zipfile.py',
|
||||
@ -307,16 +307,16 @@
|
||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\stringprep.py',
|
||||
'PYMODULE'),
|
||||
('version_info',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\version_info.py',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\version_info.py',
|
||||
'PYMODULE'),
|
||||
('base',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\__init__.py',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('base.rt_settings',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\rt_settings.py',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\rt_settings.py',
|
||||
'PYMODULE'),
|
||||
('base.rtk_logging',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\rtk_logging.py',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\rtk_logging.py',
|
||||
'PYMODULE'),
|
||||
('colorama',
|
||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\site-packages\\colorama\\__init__.py',
|
||||
@ -346,10 +346,10 @@
|
||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\ctypes\\_endian.py',
|
||||
'PYMODULE'),
|
||||
('base.download_handler',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\download_handler.py',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\download_handler.py',
|
||||
'PYMODULE'),
|
||||
('base.remote_serial',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\remote_serial.py',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\remote_serial.py',
|
||||
'PYMODULE'),
|
||||
('serial.serialutil',
|
||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\site-packages\\serial\\serialutil.py',
|
||||
@ -370,61 +370,61 @@
|
||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\json\\scanner.py',
|
||||
'PYMODULE'),
|
||||
('base.config_utils',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\config_utils.py',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\config_utils.py',
|
||||
'PYMODULE'),
|
||||
('base.memory_info',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\memory_info.py',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\memory_info.py',
|
||||
'PYMODULE'),
|
||||
('base.spic_addr_mode',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\spic_addr_mode.py',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\spic_addr_mode.py',
|
||||
'PYMODULE'),
|
||||
('base.json_utils',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\json_utils.py',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\json_utils.py',
|
||||
'PYMODULE'),
|
||||
('pyDes',
|
||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\site-packages\\pyDes.py',
|
||||
'PYMODULE'),
|
||||
('base.device_profile',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\device_profile.py',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\device_profile.py',
|
||||
'PYMODULE'),
|
||||
('base.version',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\version.py',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\version.py',
|
||||
'PYMODULE'),
|
||||
('base.efuse_data',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\efuse_data.py',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\efuse_data.py',
|
||||
'PYMODULE'),
|
||||
('base.image_info',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\image_info.py',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\image_info.py',
|
||||
'PYMODULE'),
|
||||
('base.flash_utils',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\flash_utils.py',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\flash_utils.py',
|
||||
'PYMODULE'),
|
||||
('base.sys_utils',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\sys_utils.py',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\sys_utils.py',
|
||||
'PYMODULE'),
|
||||
('base.floader_handler',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\floader_handler.py',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\floader_handler.py',
|
||||
'PYMODULE'),
|
||||
('base.next_op',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\next_op.py',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\next_op.py',
|
||||
'PYMODULE'),
|
||||
('base.device_info',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\device_info.py',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\device_info.py',
|
||||
'PYMODULE'),
|
||||
('base.rtk_flash_type',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\rtk_flash_type.py',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\rtk_flash_type.py',
|
||||
'PYMODULE'),
|
||||
('base.sense_status',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\sense_status.py',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\sense_status.py',
|
||||
'PYMODULE'),
|
||||
('base.errno',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\errno.py',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\errno.py',
|
||||
'PYMODULE'),
|
||||
('base.rom_handler',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\rom_handler.py',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\rom_handler.py',
|
||||
'PYMODULE'),
|
||||
('base.rtk_utils',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\rtk_utils.py',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\rtk_utils.py',
|
||||
'PYMODULE'),
|
||||
('serial',
|
||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\site-packages\\serial\\__init__.py',
|
||||
@ -528,64 +528,16 @@
|
||||
[],
|
||||
[],
|
||||
[('base_library.zip',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\build\\flash\\base_library.zip',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\build\\flash\\base_library.zip',
|
||||
'DATA')],
|
||||
[('warnings',
|
||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\warnings.py',
|
||||
'PYMODULE'),
|
||||
('genericpath',
|
||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\genericpath.py',
|
||||
'PYMODULE'),
|
||||
('reprlib',
|
||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\reprlib.py',
|
||||
'PYMODULE'),
|
||||
('copyreg',
|
||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\copyreg.py',
|
||||
'PYMODULE'),
|
||||
('posixpath',
|
||||
[('posixpath',
|
||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\posixpath.py',
|
||||
'PYMODULE'),
|
||||
('keyword',
|
||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\keyword.py',
|
||||
('collections.abc',
|
||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\collections\\abc.py',
|
||||
'PYMODULE'),
|
||||
('abc',
|
||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\abc.py',
|
||||
'PYMODULE'),
|
||||
('_collections_abc',
|
||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\_collections_abc.py',
|
||||
'PYMODULE'),
|
||||
('ntpath',
|
||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\ntpath.py',
|
||||
'PYMODULE'),
|
||||
('weakref',
|
||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\weakref.py',
|
||||
'PYMODULE'),
|
||||
('operator',
|
||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\operator.py',
|
||||
'PYMODULE'),
|
||||
('io',
|
||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\io.py',
|
||||
'PYMODULE'),
|
||||
('locale',
|
||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\locale.py',
|
||||
'PYMODULE'),
|
||||
('stat',
|
||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\stat.py',
|
||||
'PYMODULE'),
|
||||
('enum',
|
||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\enum.py',
|
||||
'PYMODULE'),
|
||||
('types',
|
||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\types.py',
|
||||
'PYMODULE'),
|
||||
('traceback',
|
||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\traceback.py',
|
||||
'PYMODULE'),
|
||||
('sre_compile',
|
||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\sre_compile.py',
|
||||
'PYMODULE'),
|
||||
('heapq',
|
||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\heapq.py',
|
||||
('collections',
|
||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\collections\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('re._parser',
|
||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\re\\_parser.py',
|
||||
@ -599,24 +551,78 @@
|
||||
('re._casefix',
|
||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\re\\_casefix.py',
|
||||
'PYMODULE'),
|
||||
('_weakrefset',
|
||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\_weakrefset.py',
|
||||
('copyreg',
|
||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\copyreg.py',
|
||||
'PYMODULE'),
|
||||
('types',
|
||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\types.py',
|
||||
'PYMODULE'),
|
||||
('warnings',
|
||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\warnings.py',
|
||||
'PYMODULE'),
|
||||
('functools',
|
||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\functools.py',
|
||||
'PYMODULE'),
|
||||
('collections.abc',
|
||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\collections\\abc.py',
|
||||
('linecache',
|
||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\linecache.py',
|
||||
'PYMODULE'),
|
||||
('collections',
|
||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\collections\\__init__.py',
|
||||
('_weakrefset',
|
||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\_weakrefset.py',
|
||||
'PYMODULE'),
|
||||
('stat',
|
||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\stat.py',
|
||||
'PYMODULE'),
|
||||
('reprlib',
|
||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\reprlib.py',
|
||||
'PYMODULE'),
|
||||
('sre_compile',
|
||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\sre_compile.py',
|
||||
'PYMODULE'),
|
||||
('locale',
|
||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\locale.py',
|
||||
'PYMODULE'),
|
||||
('abc',
|
||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\abc.py',
|
||||
'PYMODULE'),
|
||||
('sre_constants',
|
||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\sre_constants.py',
|
||||
'PYMODULE'),
|
||||
('traceback',
|
||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\traceback.py',
|
||||
'PYMODULE'),
|
||||
('enum',
|
||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\enum.py',
|
||||
'PYMODULE'),
|
||||
('ntpath',
|
||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\ntpath.py',
|
||||
'PYMODULE'),
|
||||
('sre_parse',
|
||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\sre_parse.py',
|
||||
'PYMODULE'),
|
||||
('codecs',
|
||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\codecs.py',
|
||||
'PYMODULE'),
|
||||
('weakref',
|
||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\weakref.py',
|
||||
'PYMODULE'),
|
||||
('heapq',
|
||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\heapq.py',
|
||||
'PYMODULE'),
|
||||
('genericpath',
|
||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\genericpath.py',
|
||||
'PYMODULE'),
|
||||
('operator',
|
||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\operator.py',
|
||||
'PYMODULE'),
|
||||
('_collections_abc',
|
||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\_collections_abc.py',
|
||||
'PYMODULE'),
|
||||
('keyword',
|
||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\keyword.py',
|
||||
'PYMODULE'),
|
||||
('io',
|
||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\io.py',
|
||||
'PYMODULE'),
|
||||
('encodings.zlib_codec',
|
||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\encodings\\zlib_codec.py',
|
||||
'PYMODULE'),
|
||||
@ -983,12 +989,6 @@
|
||||
('encodings',
|
||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\encodings\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('linecache',
|
||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\linecache.py',
|
||||
'PYMODULE'),
|
||||
('codecs',
|
||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\codecs.py',
|
||||
'PYMODULE'),
|
||||
('re',
|
||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\re\\__init__.py',
|
||||
'PYMODULE'),
|
||||
|
||||
@ -1,9 +1,9 @@
|
||||
('C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\dist\\flash.exe',
|
||||
('C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\dist\\flash.exe',
|
||||
False,
|
||||
False,
|
||||
False,
|
||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\site-packages\\PyInstaller\\bootloader\\images\\icon-windowed.ico',
|
||||
versioninfo.VSVersionInfo(ffi=versioninfo.FixedFileInfo(filevers=(1, 2, 2, 0), prodvers=(1, 2, 2, 0), mask=0x3f, flags=0x0, OS=0x40004, fileType=1, subtype=0x0, date=(0, 0)), kids=[versioninfo.StringFileInfo([versioninfo.StringTable('040904B0', [versioninfo.StringStruct('CompanyName', 'Realtek Semiconductor Corp.'), versioninfo.StringStruct('FileDescription', 'Flash Tool for Realtek Ameba SoCs'), versioninfo.StringStruct('FileVersion', '1.2.2.0'), versioninfo.StringStruct('InternalName', 'flash.exe'), versioninfo.StringStruct('LegalCopyright', 'Copyright (c) 2025 Realtek Semiconductor Corp.'), versioninfo.StringStruct('OriginalFilename', 'flash.exe'), versioninfo.StringStruct('ProductName', 'Ameba Flash Tool'), versioninfo.StringStruct('ProductVersion', '1.2.2.0')])]), versioninfo.VarFileInfo([versioninfo.VarStruct('Translation', [1033, 1200])])]),
|
||||
versioninfo.VSVersionInfo(ffi=versioninfo.FixedFileInfo(filevers=(1, 2, 3, 0), prodvers=(1, 2, 3, 0), mask=0x3f, flags=0x0, OS=0x40004, fileType=1, subtype=0x0, date=(0, 0)), kids=[versioninfo.StringFileInfo([versioninfo.StringTable('040904B0', [versioninfo.StringStruct('CompanyName', 'Realtek Semiconductor Corp.'), versioninfo.StringStruct('FileDescription', 'Flash Tool for Realtek Ameba SoCs'), versioninfo.StringStruct('FileVersion', '1.2.3.0'), versioninfo.StringStruct('InternalName', 'flash.exe'), versioninfo.StringStruct('LegalCopyright', 'Copyright (c) 2025 Realtek Semiconductor Corp.'), versioninfo.StringStruct('OriginalFilename', 'flash.exe'), versioninfo.StringStruct('ProductName', 'Ameba Flash Tool'), versioninfo.StringStruct('ProductVersion', '1.2.3.0')])]), versioninfo.VarFileInfo([versioninfo.VarStruct('Translation', [1033, 1200])])]),
|
||||
False,
|
||||
False,
|
||||
b'<?xml version="1.0" encoding="UTF-8" standalone="yes"?>\n<assembly xmlns='
|
||||
@ -29,25 +29,25 @@
|
||||
None,
|
||||
None,
|
||||
None,
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\build\\flash\\flash.pkg',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\build\\flash\\flash.pkg',
|
||||
[('pyi-contents-directory _internal', '', 'OPTION'),
|
||||
('PYZ-01.pyz',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\build\\flash\\PYZ-01.pyz',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\build\\flash\\PYZ-01.pyz',
|
||||
'PYZ'),
|
||||
('struct',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\build\\flash\\localpycs\\struct.pyc',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\build\\flash\\localpycs\\struct.pyc',
|
||||
'PYMODULE'),
|
||||
('pyimod01_archive',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\build\\flash\\localpycs\\pyimod01_archive.pyc',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\build\\flash\\localpycs\\pyimod01_archive.pyc',
|
||||
'PYMODULE'),
|
||||
('pyimod02_importers',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\build\\flash\\localpycs\\pyimod02_importers.pyc',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\build\\flash\\localpycs\\pyimod02_importers.pyc',
|
||||
'PYMODULE'),
|
||||
('pyimod03_ctypes',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\build\\flash\\localpycs\\pyimod03_ctypes.pyc',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\build\\flash\\localpycs\\pyimod03_ctypes.pyc',
|
||||
'PYMODULE'),
|
||||
('pyimod04_pywin32',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\build\\flash\\localpycs\\pyimod04_pywin32.pyc',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\build\\flash\\localpycs\\pyimod04_pywin32.pyc',
|
||||
'PYMODULE'),
|
||||
('pyiboot01_bootstrap',
|
||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\site-packages\\PyInstaller\\loader\\pyiboot01_bootstrap.py',
|
||||
@ -56,7 +56,7 @@
|
||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_inspect.py',
|
||||
'PYSOURCE'),
|
||||
('flash',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\flash.py',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\flash.py',
|
||||
'PYSOURCE'),
|
||||
('python311.dll',
|
||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\python311.dll',
|
||||
@ -95,12 +95,12 @@
|
||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\DLLs\\libffi-8.dll',
|
||||
'BINARY'),
|
||||
('base_library.zip',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\build\\flash\\base_library.zip',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\build\\flash\\base_library.zip',
|
||||
'DATA')],
|
||||
[],
|
||||
False,
|
||||
False,
|
||||
1765693469,
|
||||
1765877021,
|
||||
[('runw.exe',
|
||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\site-packages\\PyInstaller\\bootloader\\Windows-64bit-intel\\runw.exe',
|
||||
'EXECUTABLE')],
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
('C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\build\\flash\\flash.pkg',
|
||||
('C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\build\\flash\\flash.pkg',
|
||||
{'BINARY': True,
|
||||
'DATA': True,
|
||||
'EXECUTABLE': True,
|
||||
@ -10,22 +10,22 @@
|
||||
'SYMLINK': False},
|
||||
[('pyi-contents-directory _internal', '', 'OPTION'),
|
||||
('PYZ-01.pyz',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\build\\flash\\PYZ-01.pyz',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\build\\flash\\PYZ-01.pyz',
|
||||
'PYZ'),
|
||||
('struct',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\build\\flash\\localpycs\\struct.pyc',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\build\\flash\\localpycs\\struct.pyc',
|
||||
'PYMODULE'),
|
||||
('pyimod01_archive',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\build\\flash\\localpycs\\pyimod01_archive.pyc',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\build\\flash\\localpycs\\pyimod01_archive.pyc',
|
||||
'PYMODULE'),
|
||||
('pyimod02_importers',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\build\\flash\\localpycs\\pyimod02_importers.pyc',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\build\\flash\\localpycs\\pyimod02_importers.pyc',
|
||||
'PYMODULE'),
|
||||
('pyimod03_ctypes',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\build\\flash\\localpycs\\pyimod03_ctypes.pyc',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\build\\flash\\localpycs\\pyimod03_ctypes.pyc',
|
||||
'PYMODULE'),
|
||||
('pyimod04_pywin32',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\build\\flash\\localpycs\\pyimod04_pywin32.pyc',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\build\\flash\\localpycs\\pyimod04_pywin32.pyc',
|
||||
'PYMODULE'),
|
||||
('pyiboot01_bootstrap',
|
||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\site-packages\\PyInstaller\\loader\\pyiboot01_bootstrap.py',
|
||||
@ -34,7 +34,7 @@
|
||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_inspect.py',
|
||||
'PYSOURCE'),
|
||||
('flash',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\flash.py',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\flash.py',
|
||||
'PYSOURCE'),
|
||||
('python311.dll',
|
||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\python311.dll',
|
||||
@ -73,7 +73,7 @@
|
||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\DLLs\\libffi-8.dll',
|
||||
'BINARY'),
|
||||
('base_library.zip',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\build\\flash\\base_library.zip',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\build\\flash\\base_library.zip',
|
||||
'DATA')],
|
||||
'python311.dll',
|
||||
False,
|
||||
|
||||
Binary file not shown.
@ -1,4 +1,4 @@
|
||||
('C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\build\\flash\\PYZ-01.pyz',
|
||||
('C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\build\\flash\\PYZ-01.pyz',
|
||||
[('__future__',
|
||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\__future__.py',
|
||||
'PYMODULE'),
|
||||
@ -27,73 +27,73 @@
|
||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\ast.py',
|
||||
'PYMODULE'),
|
||||
('base',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\__init__.py',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('base.config_utils',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\config_utils.py',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\config_utils.py',
|
||||
'PYMODULE'),
|
||||
('base.device_info',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\device_info.py',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\device_info.py',
|
||||
'PYMODULE'),
|
||||
('base.device_profile',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\device_profile.py',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\device_profile.py',
|
||||
'PYMODULE'),
|
||||
('base.download_handler',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\download_handler.py',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\download_handler.py',
|
||||
'PYMODULE'),
|
||||
('base.efuse_data',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\efuse_data.py',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\efuse_data.py',
|
||||
'PYMODULE'),
|
||||
('base.errno',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\errno.py',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\errno.py',
|
||||
'PYMODULE'),
|
||||
('base.flash_utils',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\flash_utils.py',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\flash_utils.py',
|
||||
'PYMODULE'),
|
||||
('base.floader_handler',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\floader_handler.py',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\floader_handler.py',
|
||||
'PYMODULE'),
|
||||
('base.image_info',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\image_info.py',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\image_info.py',
|
||||
'PYMODULE'),
|
||||
('base.json_utils',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\json_utils.py',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\json_utils.py',
|
||||
'PYMODULE'),
|
||||
('base.memory_info',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\memory_info.py',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\memory_info.py',
|
||||
'PYMODULE'),
|
||||
('base.next_op',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\next_op.py',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\next_op.py',
|
||||
'PYMODULE'),
|
||||
('base.remote_serial',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\remote_serial.py',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\remote_serial.py',
|
||||
'PYMODULE'),
|
||||
('base.rom_handler',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\rom_handler.py',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\rom_handler.py',
|
||||
'PYMODULE'),
|
||||
('base.rt_settings',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\rt_settings.py',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\rt_settings.py',
|
||||
'PYMODULE'),
|
||||
('base.rtk_flash_type',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\rtk_flash_type.py',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\rtk_flash_type.py',
|
||||
'PYMODULE'),
|
||||
('base.rtk_logging',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\rtk_logging.py',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\rtk_logging.py',
|
||||
'PYMODULE'),
|
||||
('base.rtk_utils',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\rtk_utils.py',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\rtk_utils.py',
|
||||
'PYMODULE'),
|
||||
('base.sense_status',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\sense_status.py',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\sense_status.py',
|
||||
'PYMODULE'),
|
||||
('base.spic_addr_mode',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\spic_addr_mode.py',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\spic_addr_mode.py',
|
||||
'PYMODULE'),
|
||||
('base.sys_utils',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\sys_utils.py',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\sys_utils.py',
|
||||
'PYMODULE'),
|
||||
('base.version',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\version.py',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\version.py',
|
||||
'PYMODULE'),
|
||||
('base64',
|
||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\base64.py',
|
||||
@ -453,7 +453,7 @@
|
||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\urllib\\parse.py',
|
||||
'PYMODULE'),
|
||||
('version_info',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\version_info.py',
|
||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\version_info.py',
|
||||
'PYMODULE'),
|
||||
('zipfile',
|
||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\zipfile.py',
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@ -15,7 +15,7 @@
|
||||
|
||||
<div class="node">
|
||||
<a name="flash.py"></a>
|
||||
<a target="code" href="///C:/D_Drive/A-Important/work/Pro3_control_panel_v1.2.2/flash.py" type="text/plain"><tt>flash.py</tt></a>
|
||||
<a target="code" href="///C:/D_Drive/A-Important/work/Pro3_control_panel_v1.2.3/flash.py" type="text/plain"><tt>flash.py</tt></a>
|
||||
<span class="moduletype">Script</span> <div class="import">
|
||||
imports:
|
||||
<a href="#_collections_abc">_collections_abc</a>
|
||||
@ -1157,7 +1157,7 @@ imported by:
|
||||
|
||||
<div class="node">
|
||||
<a name="base"></a>
|
||||
<a target="code" href="///C:/D_Drive/A-Important/work/Pro3_control_panel_v1.2.2/base/__init__.py" type="text/plain"><tt>base</tt></a>
|
||||
<a target="code" href="///C:/D_Drive/A-Important/work/Pro3_control_panel_v1.2.3/base/__init__.py" type="text/plain"><tt>base</tt></a>
|
||||
<span class="moduletype">Package</span> <div class="import">
|
||||
imports:
|
||||
<a href="#base.download_handler">base.download_handler</a>
|
||||
@ -1197,7 +1197,7 @@ imported by:
|
||||
|
||||
<div class="node">
|
||||
<a name="base.config_utils"></a>
|
||||
<a target="code" href="///C:/D_Drive/A-Important/work/Pro3_control_panel_v1.2.2/base/config_utils.py" type="text/plain"><tt>base.config_utils</tt></a>
|
||||
<a target="code" href="///C:/D_Drive/A-Important/work/Pro3_control_panel_v1.2.3/base/config_utils.py" type="text/plain"><tt>base.config_utils</tt></a>
|
||||
<span class="moduletype">SourceModule</span> <div class="import">
|
||||
imports:
|
||||
<a href="#base">base</a>
|
||||
@ -1214,7 +1214,7 @@ imported by:
|
||||
|
||||
<div class="node">
|
||||
<a name="base.device_info"></a>
|
||||
<a target="code" href="///C:/D_Drive/A-Important/work/Pro3_control_panel_v1.2.2/base/device_info.py" type="text/plain"><tt>base.device_info</tt></a>
|
||||
<a target="code" href="///C:/D_Drive/A-Important/work/Pro3_control_panel_v1.2.3/base/device_info.py" type="text/plain"><tt>base.device_info</tt></a>
|
||||
<span class="moduletype">SourceModule</span> <div class="import">
|
||||
imports:
|
||||
<a href="#base">base</a>
|
||||
@ -1232,7 +1232,7 @@ imported by:
|
||||
|
||||
<div class="node">
|
||||
<a name="base.device_profile"></a>
|
||||
<a target="code" href="///C:/D_Drive/A-Important/work/Pro3_control_panel_v1.2.2/base/device_profile.py" type="text/plain"><tt>base.device_profile</tt></a>
|
||||
<a target="code" href="///C:/D_Drive/A-Important/work/Pro3_control_panel_v1.2.3/base/device_profile.py" type="text/plain"><tt>base.device_profile</tt></a>
|
||||
<span class="moduletype">SourceModule</span> <div class="import">
|
||||
imports:
|
||||
<a href="#base">base</a>
|
||||
@ -1251,7 +1251,7 @@ imported by:
|
||||
|
||||
<div class="node">
|
||||
<a name="base.download_handler"></a>
|
||||
<a target="code" href="///C:/D_Drive/A-Important/work/Pro3_control_panel_v1.2.2/base/download_handler.py" type="text/plain"><tt>base.download_handler</tt></a>
|
||||
<a target="code" href="///C:/D_Drive/A-Important/work/Pro3_control_panel_v1.2.3/base/download_handler.py" type="text/plain"><tt>base.download_handler</tt></a>
|
||||
<span class="moduletype">SourceModule</span> <div class="import">
|
||||
imports:
|
||||
<a href="#base">base</a>
|
||||
@ -1281,7 +1281,7 @@ imported by:
|
||||
|
||||
<div class="node">
|
||||
<a name="base.efuse_data"></a>
|
||||
<a target="code" href="///C:/D_Drive/A-Important/work/Pro3_control_panel_v1.2.2/base/efuse_data.py" type="text/plain"><tt>base.efuse_data</tt></a>
|
||||
<a target="code" href="///C:/D_Drive/A-Important/work/Pro3_control_panel_v1.2.3/base/efuse_data.py" type="text/plain"><tt>base.efuse_data</tt></a>
|
||||
<span class="moduletype">SourceModule</span> <div class="import">
|
||||
imports:
|
||||
<a href="#base">base</a>
|
||||
@ -1297,7 +1297,7 @@ imported by:
|
||||
|
||||
<div class="node">
|
||||
<a name="base.errno"></a>
|
||||
<a target="code" href="///C:/D_Drive/A-Important/work/Pro3_control_panel_v1.2.2/base/errno.py" type="text/plain"><tt>base.errno</tt></a>
|
||||
<a target="code" href="///C:/D_Drive/A-Important/work/Pro3_control_panel_v1.2.3/base/errno.py" type="text/plain"><tt>base.errno</tt></a>
|
||||
<span class="moduletype">SourceModule</span> <div class="import">
|
||||
imports:
|
||||
<a href="#base">base</a>
|
||||
@ -1315,7 +1315,7 @@ imported by:
|
||||
|
||||
<div class="node">
|
||||
<a name="base.flash_utils"></a>
|
||||
<a target="code" href="///C:/D_Drive/A-Important/work/Pro3_control_panel_v1.2.2/base/flash_utils.py" type="text/plain"><tt>base.flash_utils</tt></a>
|
||||
<a target="code" href="///C:/D_Drive/A-Important/work/Pro3_control_panel_v1.2.3/base/flash_utils.py" type="text/plain"><tt>base.flash_utils</tt></a>
|
||||
<span class="moduletype">SourceModule</span> <div class="import">
|
||||
imports:
|
||||
<a href="#base">base</a>
|
||||
@ -1334,7 +1334,7 @@ imported by:
|
||||
|
||||
<div class="node">
|
||||
<a name="base.floader_handler"></a>
|
||||
<a target="code" href="///C:/D_Drive/A-Important/work/Pro3_control_panel_v1.2.2/base/floader_handler.py" type="text/plain"><tt>base.floader_handler</tt></a>
|
||||
<a target="code" href="///C:/D_Drive/A-Important/work/Pro3_control_panel_v1.2.3/base/floader_handler.py" type="text/plain"><tt>base.floader_handler</tt></a>
|
||||
<span class="moduletype">SourceModule</span> <div class="import">
|
||||
imports:
|
||||
<a href="#base">base</a>
|
||||
@ -1356,7 +1356,7 @@ imported by:
|
||||
|
||||
<div class="node">
|
||||
<a name="base.image_info"></a>
|
||||
<a target="code" href="///C:/D_Drive/A-Important/work/Pro3_control_panel_v1.2.2/base/image_info.py" type="text/plain"><tt>base.image_info</tt></a>
|
||||
<a target="code" href="///C:/D_Drive/A-Important/work/Pro3_control_panel_v1.2.3/base/image_info.py" type="text/plain"><tt>base.image_info</tt></a>
|
||||
<span class="moduletype">SourceModule</span> <div class="import">
|
||||
imports:
|
||||
<a href="#base">base</a>
|
||||
@ -1372,7 +1372,7 @@ imported by:
|
||||
|
||||
<div class="node">
|
||||
<a name="base.json_utils"></a>
|
||||
<a target="code" href="///C:/D_Drive/A-Important/work/Pro3_control_panel_v1.2.2/base/json_utils.py" type="text/plain"><tt>base.json_utils</tt></a>
|
||||
<a target="code" href="///C:/D_Drive/A-Important/work/Pro3_control_panel_v1.2.3/base/json_utils.py" type="text/plain"><tt>base.json_utils</tt></a>
|
||||
<span class="moduletype">SourceModule</span> <div class="import">
|
||||
imports:
|
||||
<a href="#base">base</a>
|
||||
@ -1392,7 +1392,7 @@ imported by:
|
||||
|
||||
<div class="node">
|
||||
<a name="base.memory_info"></a>
|
||||
<a target="code" href="///C:/D_Drive/A-Important/work/Pro3_control_panel_v1.2.2/base/memory_info.py" type="text/plain"><tt>base.memory_info</tt></a>
|
||||
<a target="code" href="///C:/D_Drive/A-Important/work/Pro3_control_panel_v1.2.3/base/memory_info.py" type="text/plain"><tt>base.memory_info</tt></a>
|
||||
<span class="moduletype">SourceModule</span> <div class="import">
|
||||
imports:
|
||||
<a href="#base">base</a>
|
||||
@ -1409,7 +1409,7 @@ imported by:
|
||||
|
||||
<div class="node">
|
||||
<a name="base.next_op"></a>
|
||||
<a target="code" href="///C:/D_Drive/A-Important/work/Pro3_control_panel_v1.2.2/base/next_op.py" type="text/plain"><tt>base.next_op</tt></a>
|
||||
<a target="code" href="///C:/D_Drive/A-Important/work/Pro3_control_panel_v1.2.3/base/next_op.py" type="text/plain"><tt>base.next_op</tt></a>
|
||||
<span class="moduletype">SourceModule</span> <div class="import">
|
||||
imports:
|
||||
<a href="#base">base</a>
|
||||
@ -1426,7 +1426,7 @@ imported by:
|
||||
|
||||
<div class="node">
|
||||
<a name="base.remote_serial"></a>
|
||||
<a target="code" href="///C:/D_Drive/A-Important/work/Pro3_control_panel_v1.2.2/base/remote_serial.py" type="text/plain"><tt>base.remote_serial</tt></a>
|
||||
<a target="code" href="///C:/D_Drive/A-Important/work/Pro3_control_panel_v1.2.3/base/remote_serial.py" type="text/plain"><tt>base.remote_serial</tt></a>
|
||||
<span class="moduletype">SourceModule</span> <div class="import">
|
||||
imports:
|
||||
<a href="#base">base</a>
|
||||
@ -1451,7 +1451,7 @@ imported by:
|
||||
|
||||
<div class="node">
|
||||
<a name="base.rom_handler"></a>
|
||||
<a target="code" href="///C:/D_Drive/A-Important/work/Pro3_control_panel_v1.2.2/base/rom_handler.py" type="text/plain"><tt>base.rom_handler</tt></a>
|
||||
<a target="code" href="///C:/D_Drive/A-Important/work/Pro3_control_panel_v1.2.3/base/rom_handler.py" type="text/plain"><tt>base.rom_handler</tt></a>
|
||||
<span class="moduletype">SourceModule</span> <div class="import">
|
||||
imports:
|
||||
<a href="#base">base</a>
|
||||
@ -1473,7 +1473,7 @@ imported by:
|
||||
|
||||
<div class="node">
|
||||
<a name="base.rt_settings"></a>
|
||||
<a target="code" href="///C:/D_Drive/A-Important/work/Pro3_control_panel_v1.2.2/base/rt_settings.py" type="text/plain"><tt>base.rt_settings</tt></a>
|
||||
<a target="code" href="///C:/D_Drive/A-Important/work/Pro3_control_panel_v1.2.3/base/rt_settings.py" type="text/plain"><tt>base.rt_settings</tt></a>
|
||||
<span class="moduletype">SourceModule</span> <div class="import">
|
||||
imports:
|
||||
<a href="#base">base</a>
|
||||
@ -1490,7 +1490,7 @@ imported by:
|
||||
|
||||
<div class="node">
|
||||
<a name="base.rtk_flash_type"></a>
|
||||
<a target="code" href="///C:/D_Drive/A-Important/work/Pro3_control_panel_v1.2.2/base/rtk_flash_type.py" type="text/plain"><tt>base.rtk_flash_type</tt></a>
|
||||
<a target="code" href="///C:/D_Drive/A-Important/work/Pro3_control_panel_v1.2.3/base/rtk_flash_type.py" type="text/plain"><tt>base.rtk_flash_type</tt></a>
|
||||
<span class="moduletype">SourceModule</span> <div class="import">
|
||||
imports:
|
||||
<a href="#base">base</a>
|
||||
@ -1507,7 +1507,7 @@ imported by:
|
||||
|
||||
<div class="node">
|
||||
<a name="base.rtk_logging"></a>
|
||||
<a target="code" href="///C:/D_Drive/A-Important/work/Pro3_control_panel_v1.2.2/base/rtk_logging.py" type="text/plain"><tt>base.rtk_logging</tt></a>
|
||||
<a target="code" href="///C:/D_Drive/A-Important/work/Pro3_control_panel_v1.2.3/base/rtk_logging.py" type="text/plain"><tt>base.rtk_logging</tt></a>
|
||||
<span class="moduletype">SourceModule</span> <div class="import">
|
||||
imports:
|
||||
<a href="#base">base</a>
|
||||
@ -1526,7 +1526,7 @@ imported by:
|
||||
|
||||
<div class="node">
|
||||
<a name="base.rtk_utils"></a>
|
||||
<a target="code" href="///C:/D_Drive/A-Important/work/Pro3_control_panel_v1.2.2/base/rtk_utils.py" type="text/plain"><tt>base.rtk_utils</tt></a>
|
||||
<a target="code" href="///C:/D_Drive/A-Important/work/Pro3_control_panel_v1.2.3/base/rtk_utils.py" type="text/plain"><tt>base.rtk_utils</tt></a>
|
||||
<span class="moduletype">SourceModule</span> <div class="import">
|
||||
imports:
|
||||
<a href="#base">base</a>
|
||||
@ -1544,7 +1544,7 @@ imported by:
|
||||
|
||||
<div class="node">
|
||||
<a name="base.sense_status"></a>
|
||||
<a target="code" href="///C:/D_Drive/A-Important/work/Pro3_control_panel_v1.2.2/base/sense_status.py" type="text/plain"><tt>base.sense_status</tt></a>
|
||||
<a target="code" href="///C:/D_Drive/A-Important/work/Pro3_control_panel_v1.2.3/base/sense_status.py" type="text/plain"><tt>base.sense_status</tt></a>
|
||||
<span class="moduletype">SourceModule</span> <div class="import">
|
||||
imports:
|
||||
<a href="#base">base</a>
|
||||
@ -1561,7 +1561,7 @@ imported by:
|
||||
|
||||
<div class="node">
|
||||
<a name="base.spic_addr_mode"></a>
|
||||
<a target="code" href="///C:/D_Drive/A-Important/work/Pro3_control_panel_v1.2.2/base/spic_addr_mode.py" type="text/plain"><tt>base.spic_addr_mode</tt></a>
|
||||
<a target="code" href="///C:/D_Drive/A-Important/work/Pro3_control_panel_v1.2.3/base/spic_addr_mode.py" type="text/plain"><tt>base.spic_addr_mode</tt></a>
|
||||
<span class="moduletype">SourceModule</span> <div class="import">
|
||||
imports:
|
||||
<a href="#base">base</a>
|
||||
@ -1578,7 +1578,7 @@ imported by:
|
||||
|
||||
<div class="node">
|
||||
<a name="base.sys_utils"></a>
|
||||
<a target="code" href="///C:/D_Drive/A-Important/work/Pro3_control_panel_v1.2.2/base/sys_utils.py" type="text/plain"><tt>base.sys_utils</tt></a>
|
||||
<a target="code" href="///C:/D_Drive/A-Important/work/Pro3_control_panel_v1.2.3/base/sys_utils.py" type="text/plain"><tt>base.sys_utils</tt></a>
|
||||
<span class="moduletype">SourceModule</span> <div class="import">
|
||||
imports:
|
||||
<a href="#base">base</a>
|
||||
@ -1594,7 +1594,7 @@ imported by:
|
||||
|
||||
<div class="node">
|
||||
<a name="base.version"></a>
|
||||
<a target="code" href="///C:/D_Drive/A-Important/work/Pro3_control_panel_v1.2.2/base/version.py" type="text/plain"><tt>base.version</tt></a>
|
||||
<a target="code" href="///C:/D_Drive/A-Important/work/Pro3_control_panel_v1.2.3/base/version.py" type="text/plain"><tt>base.version</tt></a>
|
||||
<span class="moduletype">SourceModule</span> <div class="import">
|
||||
imports:
|
||||
<a href="#base">base</a>
|
||||
@ -8246,7 +8246,7 @@ imported by:
|
||||
|
||||
<div class="node">
|
||||
<a name="version_info"></a>
|
||||
<a target="code" href="///C:/D_Drive/A-Important/work/Pro3_control_panel_v1.2.2/version_info.py" type="text/plain"><tt>version_info</tt></a>
|
||||
<a target="code" href="///C:/D_Drive/A-Important/work/Pro3_control_panel_v1.2.3/version_info.py" type="text/plain"><tt>version_info</tt></a>
|
||||
<span class="moduletype">SourceModule</span> <div class="import">
|
||||
imported by:
|
||||
<a href="#flash.py">flash.py</a>
|
||||
|
||||
15
command_history.json
Normal file
15
command_history.json
Normal file
@ -0,0 +1,15 @@
|
||||
{
|
||||
"raw:AmebaPro3": [
|
||||
"video run 0",
|
||||
"video run 1",
|
||||
"ainr start",
|
||||
"ainr stop",
|
||||
"ainr status",
|
||||
"rd 0x40220034",
|
||||
"wd 0x40220034 0x200",
|
||||
"rd 0x40220034"
|
||||
],
|
||||
"debugger:NP:Cortex-M33": [
|
||||
"x 0x0"
|
||||
]
|
||||
}
|
||||
1034
pro3_uart.py
1034
pro3_uart.py
File diff suppressed because it is too large
Load Diff
@ -1,44 +0,0 @@
|
||||
# -*- mode: python ; coding: utf-8 -*-
|
||||
|
||||
|
||||
a = Analysis(
|
||||
['C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\pro3_uart.py'],
|
||||
pathex=[],
|
||||
binaries=[],
|
||||
datas=[],
|
||||
hiddenimports=[],
|
||||
hookspath=[],
|
||||
hooksconfig={},
|
||||
runtime_hooks=[],
|
||||
excludes=[],
|
||||
noarchive=False,
|
||||
optimize=0,
|
||||
)
|
||||
pyz = PYZ(a.pure)
|
||||
|
||||
exe = EXE(
|
||||
pyz,
|
||||
a.scripts,
|
||||
[],
|
||||
exclude_binaries=True,
|
||||
name='pro3_uart_v1.2.2',
|
||||
debug=False,
|
||||
bootloader_ignore_signals=False,
|
||||
strip=False,
|
||||
upx=True,
|
||||
console=False,
|
||||
disable_windowed_traceback=False,
|
||||
argv_emulation=False,
|
||||
target_arch=None,
|
||||
codesign_identity=None,
|
||||
entitlements_file=None,
|
||||
)
|
||||
coll = COLLECT(
|
||||
exe,
|
||||
a.binaries,
|
||||
a.datas,
|
||||
strip=False,
|
||||
upx=True,
|
||||
upx_exclude=[],
|
||||
name='pro3_uart_v1.2.2',
|
||||
)
|
||||
@ -4,5 +4,5 @@
|
||||
# Copyright (c) 2024 Realtek Semiconductor Corp.
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
version = "1.2.2.0"
|
||||
display_version = "1.2.2"
|
||||
version = "1.2.3.0"
|
||||
display_version = "1.2.3"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user