diff --git a/src/lib/serial/device.ts b/src/lib/serial/device.ts index c3ed908d..4f2fd147 100644 --- a/src/lib/serial/device.ts +++ b/src/lib/serial/device.ts @@ -513,11 +513,11 @@ export class CharaDevice { const writer2 = this.port.writable!.getWriter(); try { - await writer2.write(new TextEncoder().encode(`RST REBOOT\r\n`)); + await writer2.write(new TextEncoder().encode(`RST RESTART\r\n`)); serialLog.update((it) => { it.push({ type: "input", - value: "RST REBOOT", + value: "RST RESTART", }); return it; }); diff --git a/src/routes/(app)/ccos/+layout.svelte b/src/routes/(app)/ccos/+layout.svelte index 29d3095b..d5d3954a 100644 --- a/src/routes/(app)/ccos/+layout.svelte +++ b/src/routes/(app)/ccos/+layout.svelte @@ -2,7 +2,7 @@ let { children } = $props(); -