Cheton Wu

Results 123 comments of Cheton Wu

My testing board was running Marlin 1.1.8 and it's working well when connected with 250000 baud rate. Otherwise, I see a major difference regarding the Marlin firmware version. I will...

@rflulling I think I found a problem that might cause this **No Response** issue. Here is the code (in CNCjs) for parsing the temperature result: https://github.com/cncjs/cncjs/blob/master/src/server/controllers/Marlin/MarlinLineParserResultTemperature.js ```js class MarlinLineParserResultTemperature {...

@rflulling There's another parsing issue at https://github.com/cncjs/cncjs/issues/581 (PR #583) that CNCjs 1.9.21 and earlier versions cannot make jog working because it failed to parse temperature report ` T:0` if there...

Could you explain in more details? Are you unable to click UI buttons with a mouse?

https://github.com/Smoothieware/Smoothieware/blob/edge/src/libs/Kernel.cpp#L176 It seems the status string has changed over time and now in different format. What will it report when you enter the "?" command or the "get status" command...

Hi @gitwasi, Rotational axes can be supported by adding 'A', 'B', 'C' to the parser. Original linear X/Y/Z axes: ```js // https://github.com/cncjs/cncjs/blob/v1.9.24/src/server/controllers/Marlin/MarlinLineParserResultPosition.js class MarlinLineParserResultPosition { // X:0.00 Y:0.00 Z:0.00 E:0.00...

Recently I upgraded webpack from v3 to v4, the build time should be a little bit faster compared with previous version. To elimininate the testing and linting steps, you can...

> For each release, make downloadable copies of the files in dist/cnc/web so they need not be rebuilt on each machine (are they platform independent? ) All files in the...

@johnboiles Since CNCjs 1.10 (commit https://github.com/cncjs/cncjs/commit/8768197e2d21568fbb8e0cdb1f922a8be74cef18), `npm run build-prod-app` and `npm run build-prod-web` were renamed to `npm run build-prod-server` and `npm run build-prod-app`, respectively. You have to change your build...

It looks good to me for returning the actual state to the UI. Other than the change made in this PR, what do you think of adding a `ignoreBlankLines` option...