============== Types ==============
| 27 | |
| 28 | /** ============== Types ============== */ |
| 29 | interface QuickButton { |
| 30 | id: string; // uuid-ish |
| 31 | label: string; // shown on the button |
| 32 | command: string; // raw command to send (without auto-terminator) |
| 33 | terminator: { label: string; value: string }; // None/CR/LF/CRLF/LFCR |
| 34 | sort: number; // for stable ordering |
| 35 | } |
| 36 | |
| 37 | interface SerialSettings { |
| 38 | baudRate: number; |
nothing calls this directly
no outgoing calls
no test coverage detected