Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
brianignacio5 committed Oct 14, 2024
1 parent 0546000 commit 8a41aad
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/esploader.ts
Original file line number Diff line number Diff line change
Expand Up @@ -140,9 +140,10 @@ async function magic2Chip(magic: number): Promise<ROM | null> {
return new ESP32C6ROM();
}
case 0x33f0206f:
case 0x2421606f:
case 0x2421606f:{

Check failure on line 143 in src/esploader.ts

View workflow job for this annotation

GitHub Actions / ci

Insert `·`
const { ESP32C61ROM } = await import("./targets/esp32c61.js");
return new ESP32C61ROM();
}
case 0x1101406f: {
const { ESP32C5ROM } = await import("./targets/esp32c5.js");
return new ESP32C5ROM();
Expand Down

0 comments on commit 8a41aad

Please sign in to comment.