Skip to content

Drop support for MKR 1000 and MKR Vidor 4000 #209

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 17 commits into from
Aug 17, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
remove winc from codebase
  • Loading branch information
alessio-perugini committed Aug 9, 2023
commit a18849ddb6d16bcbc54cedb18c53f4a2c28fc0dd
2 changes: 0 additions & 2 deletions cli/certificates/flash.go
Original file line number Diff line number Diff line change
Expand Up @@ -191,8 +191,6 @@ func flashCertificates(board *firmwareindex.IndexBoard, uploadToolDir *paths.Pat
case "NINA":
// we use address and not bootloaderPort because the board should not be in bootloader mode
f, err = flasher.NewNinaFlasher(commonFlags.Address, baudRate, 30)
case "WINC1500":
f, err = flasher.NewWincFlasher(commonFlags.Address, baudRate, 30)
default:
err = fmt.Errorf("unknown module: %s", moduleName)
}
Expand Down
2 changes: 0 additions & 2 deletions cli/firmware/flash.go
Original file line number Diff line number Diff line change
Expand Up @@ -203,8 +203,6 @@ func updateFirmware(board *firmwareindex.IndexBoard, loaderSketch, moduleName st
case "NINA":
// we use address and not bootloaderPort because the board should not be in bootloader mode
f, err = flasher.NewNinaFlasher(commonFlags.Address, baudRate, 30)
case "WINC1500":
f, err = flasher.NewWincFlasher(commonFlags.Address, baudRate, 30)
default:
err = fmt.Errorf("unknown module: %s", moduleName)
feedback.Fatal(fmt.Sprintf("Error during firmware flashing: %s", err), feedback.ErrGeneric)
Expand Down
Loading