Skip to content

Commit

Permalink
Fixed a bug where Marlin controller is missing when doing controller …
Browse files Browse the repository at this point in the history
…validation (#360)
  • Loading branch information
cheton committed Jul 18, 2018
1 parent 73feef4 commit d197daa
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/app/services/cncengine/CNCEngine.js
Expand Up @@ -39,6 +39,8 @@ const caseInsensitiveEquals = (str1, str2) => {
const isValidController = (controller) => (
// Grbl
caseInsensitiveEquals(GRBL, controller) ||
// Marlin
caseInsensitiveEquals(MARLIN, controller) ||
// Smoothie
caseInsensitiveEquals(SMOOTHIE, controller) ||
// g2core
Expand Down

0 comments on commit d197daa

Please sign in to comment.