We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e649fa commit ecb8165Copy full SHA for ecb8165
modules/nina/main.go
@@ -42,7 +42,7 @@ func Run(ctx *context.Context) {
42
43
if ctx.ProgrammerPath != "" {
44
if strings.Contains(filepath.Base(ctx.ProgrammerPath), "bossac") {
45
- programmer = &bossac.Bossac{}
+ programmer = bossac.NewBossac(ctx)
46
} else if strings.Contains(filepath.Base(ctx.ProgrammerPath), "avrdude") {
47
programmer = avrdude.NewAvrdude(ctx)
48
} else if strings.Contains(filepath.Base(ctx.ProgrammerPath), "rp2040load") {
0 commit comments