Skip to content

Commit 24bca2a

Browse files
authored
Hotfix 0.2.3 (#89)
- Use recompile for Arduino - Use version 0.3.2 of WARDuino
1 parent 727aa25 commit 24bca2a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/DebugBridges/HardwareDebugBridge.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ export class HardwareDebugBridge extends AbstractDebugBridge {
133133
}
134134

135135
public compileArduino(path: string, resolver: (value: boolean) => void, reject: (value: any) => void): void {
136-
const compile = spawn("make", ["compile", `FQBN=${this.fqbn}`, `BINARY=${this.tmpdir}/upload.wasm`, 'PAUSED=true'], {
136+
const compile = spawn("make", ["recompile", `FQBN=${this.fqbn}`, `BINARY=${this.tmpdir}/upload.wasm`, 'PAUSED=true'], {
137137
cwd: path
138138
});
139139

0 commit comments

Comments
 (0)