Skip to content

Commit

Permalink
Appveyor to node 16
Browse files Browse the repository at this point in the history
  • Loading branch information
kglovern committed Nov 17, 2023
1 parent 419fb95 commit 41ce6c5
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 14 deletions.
18 changes: 9 additions & 9 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,27 +12,27 @@ environment:
matrix:
#- job_name: Windows build (x86)
# appveyor_build_worker_image: Visual Studio 2019
# nodejs_version: "14"
# nodejs_version: "16"
# ARCH: x86
- job_name: Windows build (x64)
appveyor_build_worker_image: Visual Studio 2019
nodejs_version: "14"
nodejs_version: "16"
ARCH: x64
- job_name: macOS build (x64)
appveyor_build_worker_image: macos
nodejs_version: "14"
nodejs_version: "16"
ARCH: x64
#- job_name: macOS build (arm64)
# appveyor_build_worker_image: macos
# nodejs_version: "14"
# nodejs_version: "16"
# ARCH: arm64
- job_name: Linux build (amd64)
appveyor_build_worker_image: Ubuntu2004
nodejs_version: "14"
nodejs_version: "16"
ARCH: amd64
- job_name: Linux build (arm64)
appveyor_build_worker_image: Ubuntu2004
nodejs_version: "14"
nodejs_version: "16"
ARCH: arm64
global:
GH_TOKEN:
Expand Down Expand Up @@ -303,7 +303,7 @@ for:
prerelease: false
on:
appveyor_repo_tag: true # deploy on tag push only
nodejs_version: "14"
nodejs_version: "16"

# macOS
-
Expand Down Expand Up @@ -425,7 +425,7 @@ for:
prerelease: false
on:
appveyor_repo_tag: true # deploy on tag push only
nodejs_version: "14"
nodejs_version: "16"

# Windows
-
Expand Down Expand Up @@ -545,4 +545,4 @@ for:
prerelease: false
on:
appveyor_repo_tag: true # deploy on tag push only
nodejs_version: "14"
nodejs_version: "16"
6 changes: 1 addition & 5 deletions src/server/controllers/Grblhal/GrblHalController.js
Original file line number Diff line number Diff line change
Expand Up @@ -1003,15 +1003,11 @@ class GrblHalController {
async initController() {
// $13=0 (report in mm)
// $13=1 (report in inches)
this.connection.writeImmediate(String.fromCharCode(0x87));
this.writeln('$$');
await delay(50);
this.event.trigger(CONTROLLER_READY);
this.connection.writeImmediate('$ES\n');
await delay(100);
this.connection.writeImmediate('$ESH\n');
this.connection.writeImmediate('$EG\n');
this.connection.writeImmediate('$EA\n');
this.connection.writeImmediate('$ES\n$ESH\n$EG\n$EA\n');
}

populateContext(context = {}) {
Expand Down

0 comments on commit 41ce6c5

Please sign in to comment.