Files
DeviceManager/src/lib/serial/webserial/boot.js
2023-07-05 15:22:14 +02:00

12 lines
337 B
JavaScript

export async function bootLoader() {
//Sends the bootloader command to the charachorder via the serial API
await sendCommandString("BOOTLOADER")
await readGetNone()
}
export async function reboot() {
//Sends the restart command to the charachorder via the serial API
await sendCommandString("RESTART")
await readGetNone()
}