모바일 디자인 업데이트 및 quick test 에서 start 와 length 를 직접 입력할 수 있게 함

This commit is contained in:
backuppc
2026-01-26 08:33:37 +09:00
parent fb03c189b2
commit a9609da3d3
4 changed files with 41 additions and 31 deletions

View File

@@ -46,7 +46,8 @@ export interface LogEntry {
}
export interface QuickTestConfig {
length: 3 | 4;
startAddress: number;
length: number;
format: 'hex' | 'ascii';
}