Compare commits
No commits in common. "main" and "v1.2.2" have entirely different histories.
4
.gitignore
vendored
4
.gitignore
vendored
@ -1,6 +1,2 @@
|
|||||||
*.pyc
|
*.pyc
|
||||||
*.spec
|
|
||||||
|
|
||||||
/fw/*
|
/fw/*
|
||||||
/dist/
|
|
||||||
/build/
|
|
||||||
|
|||||||
@ -1,73 +0,0 @@
|
|||||||
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.3\\flash.py'],
|
(['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'],
|
['C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2'],
|
||||||
[],
|
[],
|
||||||
[('C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\site-packages\\numpy\\_pyinstaller',
|
[('C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\site-packages\\numpy\\_pyinstaller',
|
||||||
0),
|
0),
|
||||||
@ -25,7 +25,7 @@
|
|||||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_inspect.py',
|
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_inspect.py',
|
||||||
'PYSOURCE'),
|
'PYSOURCE'),
|
||||||
('flash',
|
('flash',
|
||||||
'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.2\\flash.py',
|
||||||
'PYSOURCE')],
|
'PYSOURCE')],
|
||||||
[('zipfile',
|
[('zipfile',
|
||||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\zipfile.py',
|
'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',
|
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\stringprep.py',
|
||||||
'PYMODULE'),
|
'PYMODULE'),
|
||||||
('version_info',
|
('version_info',
|
||||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\version_info.py',
|
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\version_info.py',
|
||||||
'PYMODULE'),
|
'PYMODULE'),
|
||||||
('base',
|
('base',
|
||||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\__init__.py',
|
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\__init__.py',
|
||||||
'PYMODULE'),
|
'PYMODULE'),
|
||||||
('base.rt_settings',
|
('base.rt_settings',
|
||||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\rt_settings.py',
|
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\rt_settings.py',
|
||||||
'PYMODULE'),
|
'PYMODULE'),
|
||||||
('base.rtk_logging',
|
('base.rtk_logging',
|
||||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\rtk_logging.py',
|
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\rtk_logging.py',
|
||||||
'PYMODULE'),
|
'PYMODULE'),
|
||||||
('colorama',
|
('colorama',
|
||||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\site-packages\\colorama\\__init__.py',
|
'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',
|
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\ctypes\\_endian.py',
|
||||||
'PYMODULE'),
|
'PYMODULE'),
|
||||||
('base.download_handler',
|
('base.download_handler',
|
||||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\download_handler.py',
|
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\download_handler.py',
|
||||||
'PYMODULE'),
|
'PYMODULE'),
|
||||||
('base.remote_serial',
|
('base.remote_serial',
|
||||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\remote_serial.py',
|
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\remote_serial.py',
|
||||||
'PYMODULE'),
|
'PYMODULE'),
|
||||||
('serial.serialutil',
|
('serial.serialutil',
|
||||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\site-packages\\serial\\serialutil.py',
|
'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',
|
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\json\\scanner.py',
|
||||||
'PYMODULE'),
|
'PYMODULE'),
|
||||||
('base.config_utils',
|
('base.config_utils',
|
||||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\config_utils.py',
|
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\config_utils.py',
|
||||||
'PYMODULE'),
|
'PYMODULE'),
|
||||||
('base.memory_info',
|
('base.memory_info',
|
||||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\memory_info.py',
|
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\memory_info.py',
|
||||||
'PYMODULE'),
|
'PYMODULE'),
|
||||||
('base.spic_addr_mode',
|
('base.spic_addr_mode',
|
||||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\spic_addr_mode.py',
|
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\spic_addr_mode.py',
|
||||||
'PYMODULE'),
|
'PYMODULE'),
|
||||||
('base.json_utils',
|
('base.json_utils',
|
||||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\json_utils.py',
|
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\json_utils.py',
|
||||||
'PYMODULE'),
|
'PYMODULE'),
|
||||||
('pyDes',
|
('pyDes',
|
||||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\site-packages\\pyDes.py',
|
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\site-packages\\pyDes.py',
|
||||||
'PYMODULE'),
|
'PYMODULE'),
|
||||||
('base.device_profile',
|
('base.device_profile',
|
||||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\device_profile.py',
|
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\device_profile.py',
|
||||||
'PYMODULE'),
|
'PYMODULE'),
|
||||||
('base.version',
|
('base.version',
|
||||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\version.py',
|
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\version.py',
|
||||||
'PYMODULE'),
|
'PYMODULE'),
|
||||||
('base.efuse_data',
|
('base.efuse_data',
|
||||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\efuse_data.py',
|
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\efuse_data.py',
|
||||||
'PYMODULE'),
|
'PYMODULE'),
|
||||||
('base.image_info',
|
('base.image_info',
|
||||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\image_info.py',
|
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\image_info.py',
|
||||||
'PYMODULE'),
|
'PYMODULE'),
|
||||||
('base.flash_utils',
|
('base.flash_utils',
|
||||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\flash_utils.py',
|
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\flash_utils.py',
|
||||||
'PYMODULE'),
|
'PYMODULE'),
|
||||||
('base.sys_utils',
|
('base.sys_utils',
|
||||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\sys_utils.py',
|
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\sys_utils.py',
|
||||||
'PYMODULE'),
|
'PYMODULE'),
|
||||||
('base.floader_handler',
|
('base.floader_handler',
|
||||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\floader_handler.py',
|
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\floader_handler.py',
|
||||||
'PYMODULE'),
|
'PYMODULE'),
|
||||||
('base.next_op',
|
('base.next_op',
|
||||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\next_op.py',
|
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\next_op.py',
|
||||||
'PYMODULE'),
|
'PYMODULE'),
|
||||||
('base.device_info',
|
('base.device_info',
|
||||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\device_info.py',
|
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\device_info.py',
|
||||||
'PYMODULE'),
|
'PYMODULE'),
|
||||||
('base.rtk_flash_type',
|
('base.rtk_flash_type',
|
||||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\rtk_flash_type.py',
|
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\rtk_flash_type.py',
|
||||||
'PYMODULE'),
|
'PYMODULE'),
|
||||||
('base.sense_status',
|
('base.sense_status',
|
||||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\sense_status.py',
|
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\sense_status.py',
|
||||||
'PYMODULE'),
|
'PYMODULE'),
|
||||||
('base.errno',
|
('base.errno',
|
||||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\errno.py',
|
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\errno.py',
|
||||||
'PYMODULE'),
|
'PYMODULE'),
|
||||||
('base.rom_handler',
|
('base.rom_handler',
|
||||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\rom_handler.py',
|
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\rom_handler.py',
|
||||||
'PYMODULE'),
|
'PYMODULE'),
|
||||||
('base.rtk_utils',
|
('base.rtk_utils',
|
||||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\rtk_utils.py',
|
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\rtk_utils.py',
|
||||||
'PYMODULE'),
|
'PYMODULE'),
|
||||||
('serial',
|
('serial',
|
||||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\site-packages\\serial\\__init__.py',
|
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\site-packages\\serial\\__init__.py',
|
||||||
@ -528,16 +528,64 @@
|
|||||||
[],
|
[],
|
||||||
[],
|
[],
|
||||||
[('base_library.zip',
|
[('base_library.zip',
|
||||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\build\\flash\\base_library.zip',
|
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\build\\flash\\base_library.zip',
|
||||||
'DATA')],
|
'DATA')],
|
||||||
[('posixpath',
|
[('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',
|
||||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\posixpath.py',
|
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\posixpath.py',
|
||||||
'PYMODULE'),
|
'PYMODULE'),
|
||||||
('collections.abc',
|
('keyword',
|
||||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\collections\\abc.py',
|
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\keyword.py',
|
||||||
'PYMODULE'),
|
'PYMODULE'),
|
||||||
('collections',
|
('abc',
|
||||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\collections\\__init__.py',
|
'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',
|
||||||
'PYMODULE'),
|
'PYMODULE'),
|
||||||
('re._parser',
|
('re._parser',
|
||||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\re\\_parser.py',
|
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\re\\_parser.py',
|
||||||
@ -551,78 +599,24 @@
|
|||||||
('re._casefix',
|
('re._casefix',
|
||||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\re\\_casefix.py',
|
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\re\\_casefix.py',
|
||||||
'PYMODULE'),
|
'PYMODULE'),
|
||||||
('copyreg',
|
('_weakrefset',
|
||||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\copyreg.py',
|
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\_weakrefset.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'),
|
'PYMODULE'),
|
||||||
('functools',
|
('functools',
|
||||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\functools.py',
|
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\functools.py',
|
||||||
'PYMODULE'),
|
'PYMODULE'),
|
||||||
('linecache',
|
('collections.abc',
|
||||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\linecache.py',
|
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\collections\\abc.py',
|
||||||
'PYMODULE'),
|
'PYMODULE'),
|
||||||
('_weakrefset',
|
('collections',
|
||||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\_weakrefset.py',
|
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\collections\\__init__.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'),
|
'PYMODULE'),
|
||||||
('sre_constants',
|
('sre_constants',
|
||||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\sre_constants.py',
|
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\sre_constants.py',
|
||||||
'PYMODULE'),
|
'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',
|
('sre_parse',
|
||||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\sre_parse.py',
|
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\sre_parse.py',
|
||||||
'PYMODULE'),
|
'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',
|
('encodings.zlib_codec',
|
||||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\encodings\\zlib_codec.py',
|
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\encodings\\zlib_codec.py',
|
||||||
'PYMODULE'),
|
'PYMODULE'),
|
||||||
@ -989,6 +983,12 @@
|
|||||||
('encodings',
|
('encodings',
|
||||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\encodings\\__init__.py',
|
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\encodings\\__init__.py',
|
||||||
'PYMODULE'),
|
'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',
|
('re',
|
||||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\re\\__init__.py',
|
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\re\\__init__.py',
|
||||||
'PYMODULE'),
|
'PYMODULE'),
|
||||||
|
|||||||
@ -1,9 +1,9 @@
|
|||||||
('C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\dist\\flash.exe',
|
('C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\dist\\flash.exe',
|
||||||
False,
|
False,
|
||||||
False,
|
False,
|
||||||
False,
|
False,
|
||||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\site-packages\\PyInstaller\\bootloader\\images\\icon-windowed.ico',
|
'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, 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])])]),
|
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])])]),
|
||||||
False,
|
False,
|
||||||
False,
|
False,
|
||||||
b'<?xml version="1.0" encoding="UTF-8" standalone="yes"?>\n<assembly xmlns='
|
b'<?xml version="1.0" encoding="UTF-8" standalone="yes"?>\n<assembly xmlns='
|
||||||
@ -29,25 +29,25 @@
|
|||||||
None,
|
None,
|
||||||
None,
|
None,
|
||||||
None,
|
None,
|
||||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\build\\flash\\flash.pkg',
|
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\build\\flash\\flash.pkg',
|
||||||
[('pyi-contents-directory _internal', '', 'OPTION'),
|
[('pyi-contents-directory _internal', '', 'OPTION'),
|
||||||
('PYZ-01.pyz',
|
('PYZ-01.pyz',
|
||||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\build\\flash\\PYZ-01.pyz',
|
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\build\\flash\\PYZ-01.pyz',
|
||||||
'PYZ'),
|
'PYZ'),
|
||||||
('struct',
|
('struct',
|
||||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\build\\flash\\localpycs\\struct.pyc',
|
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\build\\flash\\localpycs\\struct.pyc',
|
||||||
'PYMODULE'),
|
'PYMODULE'),
|
||||||
('pyimod01_archive',
|
('pyimod01_archive',
|
||||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\build\\flash\\localpycs\\pyimod01_archive.pyc',
|
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\build\\flash\\localpycs\\pyimod01_archive.pyc',
|
||||||
'PYMODULE'),
|
'PYMODULE'),
|
||||||
('pyimod02_importers',
|
('pyimod02_importers',
|
||||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\build\\flash\\localpycs\\pyimod02_importers.pyc',
|
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\build\\flash\\localpycs\\pyimod02_importers.pyc',
|
||||||
'PYMODULE'),
|
'PYMODULE'),
|
||||||
('pyimod03_ctypes',
|
('pyimod03_ctypes',
|
||||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\build\\flash\\localpycs\\pyimod03_ctypes.pyc',
|
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\build\\flash\\localpycs\\pyimod03_ctypes.pyc',
|
||||||
'PYMODULE'),
|
'PYMODULE'),
|
||||||
('pyimod04_pywin32',
|
('pyimod04_pywin32',
|
||||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\build\\flash\\localpycs\\pyimod04_pywin32.pyc',
|
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\build\\flash\\localpycs\\pyimod04_pywin32.pyc',
|
||||||
'PYMODULE'),
|
'PYMODULE'),
|
||||||
('pyiboot01_bootstrap',
|
('pyiboot01_bootstrap',
|
||||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\site-packages\\PyInstaller\\loader\\pyiboot01_bootstrap.py',
|
'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',
|
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_inspect.py',
|
||||||
'PYSOURCE'),
|
'PYSOURCE'),
|
||||||
('flash',
|
('flash',
|
||||||
'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.2\\flash.py',
|
||||||
'PYSOURCE'),
|
'PYSOURCE'),
|
||||||
('python311.dll',
|
('python311.dll',
|
||||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\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',
|
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\DLLs\\libffi-8.dll',
|
||||||
'BINARY'),
|
'BINARY'),
|
||||||
('base_library.zip',
|
('base_library.zip',
|
||||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\build\\flash\\base_library.zip',
|
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\build\\flash\\base_library.zip',
|
||||||
'DATA')],
|
'DATA')],
|
||||||
[],
|
[],
|
||||||
False,
|
False,
|
||||||
False,
|
False,
|
||||||
1765877021,
|
1765693469,
|
||||||
[('runw.exe',
|
[('runw.exe',
|
||||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\site-packages\\PyInstaller\\bootloader\\Windows-64bit-intel\\runw.exe',
|
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\site-packages\\PyInstaller\\bootloader\\Windows-64bit-intel\\runw.exe',
|
||||||
'EXECUTABLE')],
|
'EXECUTABLE')],
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
('C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\build\\flash\\flash.pkg',
|
('C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\build\\flash\\flash.pkg',
|
||||||
{'BINARY': True,
|
{'BINARY': True,
|
||||||
'DATA': True,
|
'DATA': True,
|
||||||
'EXECUTABLE': True,
|
'EXECUTABLE': True,
|
||||||
@ -10,22 +10,22 @@
|
|||||||
'SYMLINK': False},
|
'SYMLINK': False},
|
||||||
[('pyi-contents-directory _internal', '', 'OPTION'),
|
[('pyi-contents-directory _internal', '', 'OPTION'),
|
||||||
('PYZ-01.pyz',
|
('PYZ-01.pyz',
|
||||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\build\\flash\\PYZ-01.pyz',
|
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\build\\flash\\PYZ-01.pyz',
|
||||||
'PYZ'),
|
'PYZ'),
|
||||||
('struct',
|
('struct',
|
||||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\build\\flash\\localpycs\\struct.pyc',
|
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\build\\flash\\localpycs\\struct.pyc',
|
||||||
'PYMODULE'),
|
'PYMODULE'),
|
||||||
('pyimod01_archive',
|
('pyimod01_archive',
|
||||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\build\\flash\\localpycs\\pyimod01_archive.pyc',
|
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\build\\flash\\localpycs\\pyimod01_archive.pyc',
|
||||||
'PYMODULE'),
|
'PYMODULE'),
|
||||||
('pyimod02_importers',
|
('pyimod02_importers',
|
||||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\build\\flash\\localpycs\\pyimod02_importers.pyc',
|
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\build\\flash\\localpycs\\pyimod02_importers.pyc',
|
||||||
'PYMODULE'),
|
'PYMODULE'),
|
||||||
('pyimod03_ctypes',
|
('pyimod03_ctypes',
|
||||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\build\\flash\\localpycs\\pyimod03_ctypes.pyc',
|
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\build\\flash\\localpycs\\pyimod03_ctypes.pyc',
|
||||||
'PYMODULE'),
|
'PYMODULE'),
|
||||||
('pyimod04_pywin32',
|
('pyimod04_pywin32',
|
||||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\build\\flash\\localpycs\\pyimod04_pywin32.pyc',
|
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\build\\flash\\localpycs\\pyimod04_pywin32.pyc',
|
||||||
'PYMODULE'),
|
'PYMODULE'),
|
||||||
('pyiboot01_bootstrap',
|
('pyiboot01_bootstrap',
|
||||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\site-packages\\PyInstaller\\loader\\pyiboot01_bootstrap.py',
|
'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',
|
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_inspect.py',
|
||||||
'PYSOURCE'),
|
'PYSOURCE'),
|
||||||
('flash',
|
('flash',
|
||||||
'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.2\\flash.py',
|
||||||
'PYSOURCE'),
|
'PYSOURCE'),
|
||||||
('python311.dll',
|
('python311.dll',
|
||||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\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',
|
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\DLLs\\libffi-8.dll',
|
||||||
'BINARY'),
|
'BINARY'),
|
||||||
('base_library.zip',
|
('base_library.zip',
|
||||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\build\\flash\\base_library.zip',
|
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\build\\flash\\base_library.zip',
|
||||||
'DATA')],
|
'DATA')],
|
||||||
'python311.dll',
|
'python311.dll',
|
||||||
False,
|
False,
|
||||||
|
|||||||
Binary file not shown.
@ -1,4 +1,4 @@
|
|||||||
('C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\build\\flash\\PYZ-01.pyz',
|
('C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\build\\flash\\PYZ-01.pyz',
|
||||||
[('__future__',
|
[('__future__',
|
||||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\__future__.py',
|
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\__future__.py',
|
||||||
'PYMODULE'),
|
'PYMODULE'),
|
||||||
@ -27,73 +27,73 @@
|
|||||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\ast.py',
|
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\ast.py',
|
||||||
'PYMODULE'),
|
'PYMODULE'),
|
||||||
('base',
|
('base',
|
||||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\__init__.py',
|
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\__init__.py',
|
||||||
'PYMODULE'),
|
'PYMODULE'),
|
||||||
('base.config_utils',
|
('base.config_utils',
|
||||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\config_utils.py',
|
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\config_utils.py',
|
||||||
'PYMODULE'),
|
'PYMODULE'),
|
||||||
('base.device_info',
|
('base.device_info',
|
||||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\device_info.py',
|
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\device_info.py',
|
||||||
'PYMODULE'),
|
'PYMODULE'),
|
||||||
('base.device_profile',
|
('base.device_profile',
|
||||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\device_profile.py',
|
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\device_profile.py',
|
||||||
'PYMODULE'),
|
'PYMODULE'),
|
||||||
('base.download_handler',
|
('base.download_handler',
|
||||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\download_handler.py',
|
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\download_handler.py',
|
||||||
'PYMODULE'),
|
'PYMODULE'),
|
||||||
('base.efuse_data',
|
('base.efuse_data',
|
||||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\efuse_data.py',
|
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\efuse_data.py',
|
||||||
'PYMODULE'),
|
'PYMODULE'),
|
||||||
('base.errno',
|
('base.errno',
|
||||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\errno.py',
|
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\errno.py',
|
||||||
'PYMODULE'),
|
'PYMODULE'),
|
||||||
('base.flash_utils',
|
('base.flash_utils',
|
||||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\flash_utils.py',
|
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\flash_utils.py',
|
||||||
'PYMODULE'),
|
'PYMODULE'),
|
||||||
('base.floader_handler',
|
('base.floader_handler',
|
||||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\floader_handler.py',
|
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\floader_handler.py',
|
||||||
'PYMODULE'),
|
'PYMODULE'),
|
||||||
('base.image_info',
|
('base.image_info',
|
||||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\image_info.py',
|
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\image_info.py',
|
||||||
'PYMODULE'),
|
'PYMODULE'),
|
||||||
('base.json_utils',
|
('base.json_utils',
|
||||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\json_utils.py',
|
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\json_utils.py',
|
||||||
'PYMODULE'),
|
'PYMODULE'),
|
||||||
('base.memory_info',
|
('base.memory_info',
|
||||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\memory_info.py',
|
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\memory_info.py',
|
||||||
'PYMODULE'),
|
'PYMODULE'),
|
||||||
('base.next_op',
|
('base.next_op',
|
||||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\next_op.py',
|
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\next_op.py',
|
||||||
'PYMODULE'),
|
'PYMODULE'),
|
||||||
('base.remote_serial',
|
('base.remote_serial',
|
||||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\remote_serial.py',
|
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\remote_serial.py',
|
||||||
'PYMODULE'),
|
'PYMODULE'),
|
||||||
('base.rom_handler',
|
('base.rom_handler',
|
||||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\rom_handler.py',
|
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\rom_handler.py',
|
||||||
'PYMODULE'),
|
'PYMODULE'),
|
||||||
('base.rt_settings',
|
('base.rt_settings',
|
||||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\rt_settings.py',
|
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\rt_settings.py',
|
||||||
'PYMODULE'),
|
'PYMODULE'),
|
||||||
('base.rtk_flash_type',
|
('base.rtk_flash_type',
|
||||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\rtk_flash_type.py',
|
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\rtk_flash_type.py',
|
||||||
'PYMODULE'),
|
'PYMODULE'),
|
||||||
('base.rtk_logging',
|
('base.rtk_logging',
|
||||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\rtk_logging.py',
|
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\rtk_logging.py',
|
||||||
'PYMODULE'),
|
'PYMODULE'),
|
||||||
('base.rtk_utils',
|
('base.rtk_utils',
|
||||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\rtk_utils.py',
|
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\rtk_utils.py',
|
||||||
'PYMODULE'),
|
'PYMODULE'),
|
||||||
('base.sense_status',
|
('base.sense_status',
|
||||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\sense_status.py',
|
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\sense_status.py',
|
||||||
'PYMODULE'),
|
'PYMODULE'),
|
||||||
('base.spic_addr_mode',
|
('base.spic_addr_mode',
|
||||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\spic_addr_mode.py',
|
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\spic_addr_mode.py',
|
||||||
'PYMODULE'),
|
'PYMODULE'),
|
||||||
('base.sys_utils',
|
('base.sys_utils',
|
||||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\sys_utils.py',
|
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\sys_utils.py',
|
||||||
'PYMODULE'),
|
'PYMODULE'),
|
||||||
('base.version',
|
('base.version',
|
||||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\base\\version.py',
|
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\base\\version.py',
|
||||||
'PYMODULE'),
|
'PYMODULE'),
|
||||||
('base64',
|
('base64',
|
||||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\base64.py',
|
'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',
|
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\urllib\\parse.py',
|
||||||
'PYMODULE'),
|
'PYMODULE'),
|
||||||
('version_info',
|
('version_info',
|
||||||
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.3\\version_info.py',
|
'C:\\D_Drive\\A-Important\\work\\Pro3_control_panel_v1.2.2\\version_info.py',
|
||||||
'PYMODULE'),
|
'PYMODULE'),
|
||||||
('zipfile',
|
('zipfile',
|
||||||
'C:\\Users\\wongyiekheng\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\zipfile.py',
|
'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">
|
<div class="node">
|
||||||
<a name="flash.py"></a>
|
<a name="flash.py"></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>
|
<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>
|
||||||
<span class="moduletype">Script</span> <div class="import">
|
<span class="moduletype">Script</span> <div class="import">
|
||||||
imports:
|
imports:
|
||||||
<a href="#_collections_abc">_collections_abc</a>
|
<a href="#_collections_abc">_collections_abc</a>
|
||||||
@ -1157,7 +1157,7 @@ imported by:
|
|||||||
|
|
||||||
<div class="node">
|
<div class="node">
|
||||||
<a name="base"></a>
|
<a name="base"></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>
|
<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>
|
||||||
<span class="moduletype">Package</span> <div class="import">
|
<span class="moduletype">Package</span> <div class="import">
|
||||||
imports:
|
imports:
|
||||||
<a href="#base.download_handler">base.download_handler</a>
|
<a href="#base.download_handler">base.download_handler</a>
|
||||||
@ -1197,7 +1197,7 @@ imported by:
|
|||||||
|
|
||||||
<div class="node">
|
<div class="node">
|
||||||
<a name="base.config_utils"></a>
|
<a name="base.config_utils"></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>
|
<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>
|
||||||
<span class="moduletype">SourceModule</span> <div class="import">
|
<span class="moduletype">SourceModule</span> <div class="import">
|
||||||
imports:
|
imports:
|
||||||
<a href="#base">base</a>
|
<a href="#base">base</a>
|
||||||
@ -1214,7 +1214,7 @@ imported by:
|
|||||||
|
|
||||||
<div class="node">
|
<div class="node">
|
||||||
<a name="base.device_info"></a>
|
<a name="base.device_info"></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>
|
<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>
|
||||||
<span class="moduletype">SourceModule</span> <div class="import">
|
<span class="moduletype">SourceModule</span> <div class="import">
|
||||||
imports:
|
imports:
|
||||||
<a href="#base">base</a>
|
<a href="#base">base</a>
|
||||||
@ -1232,7 +1232,7 @@ imported by:
|
|||||||
|
|
||||||
<div class="node">
|
<div class="node">
|
||||||
<a name="base.device_profile"></a>
|
<a name="base.device_profile"></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>
|
<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>
|
||||||
<span class="moduletype">SourceModule</span> <div class="import">
|
<span class="moduletype">SourceModule</span> <div class="import">
|
||||||
imports:
|
imports:
|
||||||
<a href="#base">base</a>
|
<a href="#base">base</a>
|
||||||
@ -1251,7 +1251,7 @@ imported by:
|
|||||||
|
|
||||||
<div class="node">
|
<div class="node">
|
||||||
<a name="base.download_handler"></a>
|
<a name="base.download_handler"></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>
|
<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>
|
||||||
<span class="moduletype">SourceModule</span> <div class="import">
|
<span class="moduletype">SourceModule</span> <div class="import">
|
||||||
imports:
|
imports:
|
||||||
<a href="#base">base</a>
|
<a href="#base">base</a>
|
||||||
@ -1281,7 +1281,7 @@ imported by:
|
|||||||
|
|
||||||
<div class="node">
|
<div class="node">
|
||||||
<a name="base.efuse_data"></a>
|
<a name="base.efuse_data"></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>
|
<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>
|
||||||
<span class="moduletype">SourceModule</span> <div class="import">
|
<span class="moduletype">SourceModule</span> <div class="import">
|
||||||
imports:
|
imports:
|
||||||
<a href="#base">base</a>
|
<a href="#base">base</a>
|
||||||
@ -1297,7 +1297,7 @@ imported by:
|
|||||||
|
|
||||||
<div class="node">
|
<div class="node">
|
||||||
<a name="base.errno"></a>
|
<a name="base.errno"></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>
|
<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>
|
||||||
<span class="moduletype">SourceModule</span> <div class="import">
|
<span class="moduletype">SourceModule</span> <div class="import">
|
||||||
imports:
|
imports:
|
||||||
<a href="#base">base</a>
|
<a href="#base">base</a>
|
||||||
@ -1315,7 +1315,7 @@ imported by:
|
|||||||
|
|
||||||
<div class="node">
|
<div class="node">
|
||||||
<a name="base.flash_utils"></a>
|
<a name="base.flash_utils"></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>
|
<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>
|
||||||
<span class="moduletype">SourceModule</span> <div class="import">
|
<span class="moduletype">SourceModule</span> <div class="import">
|
||||||
imports:
|
imports:
|
||||||
<a href="#base">base</a>
|
<a href="#base">base</a>
|
||||||
@ -1334,7 +1334,7 @@ imported by:
|
|||||||
|
|
||||||
<div class="node">
|
<div class="node">
|
||||||
<a name="base.floader_handler"></a>
|
<a name="base.floader_handler"></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>
|
<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>
|
||||||
<span class="moduletype">SourceModule</span> <div class="import">
|
<span class="moduletype">SourceModule</span> <div class="import">
|
||||||
imports:
|
imports:
|
||||||
<a href="#base">base</a>
|
<a href="#base">base</a>
|
||||||
@ -1356,7 +1356,7 @@ imported by:
|
|||||||
|
|
||||||
<div class="node">
|
<div class="node">
|
||||||
<a name="base.image_info"></a>
|
<a name="base.image_info"></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>
|
<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>
|
||||||
<span class="moduletype">SourceModule</span> <div class="import">
|
<span class="moduletype">SourceModule</span> <div class="import">
|
||||||
imports:
|
imports:
|
||||||
<a href="#base">base</a>
|
<a href="#base">base</a>
|
||||||
@ -1372,7 +1372,7 @@ imported by:
|
|||||||
|
|
||||||
<div class="node">
|
<div class="node">
|
||||||
<a name="base.json_utils"></a>
|
<a name="base.json_utils"></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>
|
<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>
|
||||||
<span class="moduletype">SourceModule</span> <div class="import">
|
<span class="moduletype">SourceModule</span> <div class="import">
|
||||||
imports:
|
imports:
|
||||||
<a href="#base">base</a>
|
<a href="#base">base</a>
|
||||||
@ -1392,7 +1392,7 @@ imported by:
|
|||||||
|
|
||||||
<div class="node">
|
<div class="node">
|
||||||
<a name="base.memory_info"></a>
|
<a name="base.memory_info"></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>
|
<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>
|
||||||
<span class="moduletype">SourceModule</span> <div class="import">
|
<span class="moduletype">SourceModule</span> <div class="import">
|
||||||
imports:
|
imports:
|
||||||
<a href="#base">base</a>
|
<a href="#base">base</a>
|
||||||
@ -1409,7 +1409,7 @@ imported by:
|
|||||||
|
|
||||||
<div class="node">
|
<div class="node">
|
||||||
<a name="base.next_op"></a>
|
<a name="base.next_op"></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>
|
<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>
|
||||||
<span class="moduletype">SourceModule</span> <div class="import">
|
<span class="moduletype">SourceModule</span> <div class="import">
|
||||||
imports:
|
imports:
|
||||||
<a href="#base">base</a>
|
<a href="#base">base</a>
|
||||||
@ -1426,7 +1426,7 @@ imported by:
|
|||||||
|
|
||||||
<div class="node">
|
<div class="node">
|
||||||
<a name="base.remote_serial"></a>
|
<a name="base.remote_serial"></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>
|
<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>
|
||||||
<span class="moduletype">SourceModule</span> <div class="import">
|
<span class="moduletype">SourceModule</span> <div class="import">
|
||||||
imports:
|
imports:
|
||||||
<a href="#base">base</a>
|
<a href="#base">base</a>
|
||||||
@ -1451,7 +1451,7 @@ imported by:
|
|||||||
|
|
||||||
<div class="node">
|
<div class="node">
|
||||||
<a name="base.rom_handler"></a>
|
<a name="base.rom_handler"></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>
|
<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>
|
||||||
<span class="moduletype">SourceModule</span> <div class="import">
|
<span class="moduletype">SourceModule</span> <div class="import">
|
||||||
imports:
|
imports:
|
||||||
<a href="#base">base</a>
|
<a href="#base">base</a>
|
||||||
@ -1473,7 +1473,7 @@ imported by:
|
|||||||
|
|
||||||
<div class="node">
|
<div class="node">
|
||||||
<a name="base.rt_settings"></a>
|
<a name="base.rt_settings"></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>
|
<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>
|
||||||
<span class="moduletype">SourceModule</span> <div class="import">
|
<span class="moduletype">SourceModule</span> <div class="import">
|
||||||
imports:
|
imports:
|
||||||
<a href="#base">base</a>
|
<a href="#base">base</a>
|
||||||
@ -1490,7 +1490,7 @@ imported by:
|
|||||||
|
|
||||||
<div class="node">
|
<div class="node">
|
||||||
<a name="base.rtk_flash_type"></a>
|
<a name="base.rtk_flash_type"></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>
|
<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>
|
||||||
<span class="moduletype">SourceModule</span> <div class="import">
|
<span class="moduletype">SourceModule</span> <div class="import">
|
||||||
imports:
|
imports:
|
||||||
<a href="#base">base</a>
|
<a href="#base">base</a>
|
||||||
@ -1507,7 +1507,7 @@ imported by:
|
|||||||
|
|
||||||
<div class="node">
|
<div class="node">
|
||||||
<a name="base.rtk_logging"></a>
|
<a name="base.rtk_logging"></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>
|
<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>
|
||||||
<span class="moduletype">SourceModule</span> <div class="import">
|
<span class="moduletype">SourceModule</span> <div class="import">
|
||||||
imports:
|
imports:
|
||||||
<a href="#base">base</a>
|
<a href="#base">base</a>
|
||||||
@ -1526,7 +1526,7 @@ imported by:
|
|||||||
|
|
||||||
<div class="node">
|
<div class="node">
|
||||||
<a name="base.rtk_utils"></a>
|
<a name="base.rtk_utils"></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>
|
<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>
|
||||||
<span class="moduletype">SourceModule</span> <div class="import">
|
<span class="moduletype">SourceModule</span> <div class="import">
|
||||||
imports:
|
imports:
|
||||||
<a href="#base">base</a>
|
<a href="#base">base</a>
|
||||||
@ -1544,7 +1544,7 @@ imported by:
|
|||||||
|
|
||||||
<div class="node">
|
<div class="node">
|
||||||
<a name="base.sense_status"></a>
|
<a name="base.sense_status"></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>
|
<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>
|
||||||
<span class="moduletype">SourceModule</span> <div class="import">
|
<span class="moduletype">SourceModule</span> <div class="import">
|
||||||
imports:
|
imports:
|
||||||
<a href="#base">base</a>
|
<a href="#base">base</a>
|
||||||
@ -1561,7 +1561,7 @@ imported by:
|
|||||||
|
|
||||||
<div class="node">
|
<div class="node">
|
||||||
<a name="base.spic_addr_mode"></a>
|
<a name="base.spic_addr_mode"></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>
|
<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>
|
||||||
<span class="moduletype">SourceModule</span> <div class="import">
|
<span class="moduletype">SourceModule</span> <div class="import">
|
||||||
imports:
|
imports:
|
||||||
<a href="#base">base</a>
|
<a href="#base">base</a>
|
||||||
@ -1578,7 +1578,7 @@ imported by:
|
|||||||
|
|
||||||
<div class="node">
|
<div class="node">
|
||||||
<a name="base.sys_utils"></a>
|
<a name="base.sys_utils"></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>
|
<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>
|
||||||
<span class="moduletype">SourceModule</span> <div class="import">
|
<span class="moduletype">SourceModule</span> <div class="import">
|
||||||
imports:
|
imports:
|
||||||
<a href="#base">base</a>
|
<a href="#base">base</a>
|
||||||
@ -1594,7 +1594,7 @@ imported by:
|
|||||||
|
|
||||||
<div class="node">
|
<div class="node">
|
||||||
<a name="base.version"></a>
|
<a name="base.version"></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>
|
<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>
|
||||||
<span class="moduletype">SourceModule</span> <div class="import">
|
<span class="moduletype">SourceModule</span> <div class="import">
|
||||||
imports:
|
imports:
|
||||||
<a href="#base">base</a>
|
<a href="#base">base</a>
|
||||||
@ -8246,7 +8246,7 @@ imported by:
|
|||||||
|
|
||||||
<div class="node">
|
<div class="node">
|
||||||
<a name="version_info"></a>
|
<a name="version_info"></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>
|
<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>
|
||||||
<span class="moduletype">SourceModule</span> <div class="import">
|
<span class="moduletype">SourceModule</span> <div class="import">
|
||||||
imported by:
|
imported by:
|
||||||
<a href="#flash.py">flash.py</a>
|
<a href="#flash.py">flash.py</a>
|
||||||
|
|||||||
@ -1,15 +0,0 @@
|
|||||||
{
|
|
||||||
"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"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
1032
pro3_uart.py
1032
pro3_uart.py
File diff suppressed because it is too large
Load Diff
44
pro3_uart_v1.2.2.spec
Normal file
44
pro3_uart_v1.2.2.spec
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
# -*- 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.
|
# Copyright (c) 2024 Realtek Semiconductor Corp.
|
||||||
# SPDX-License-Identifier: Apache-2.0
|
# SPDX-License-Identifier: Apache-2.0
|
||||||
|
|
||||||
version = "1.2.3.0"
|
version = "1.2.2.0"
|
||||||
display_version = "1.2.3"
|
display_version = "1.2.2"
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user