Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Compile in arduino 22, M80/M81 support, remove M140/M190 from supported gcodes #3

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions Marlin/Marlin.pde
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,6 @@ char version_string[] = "0.9.3";
// M85 - Set inactivity shutdown timer with parameter S<seconds>. To disable set zero (default)
// M92 - Set axis_steps_per_unit - same syntax as G92
// M115 - Capabilities string
// M140 - Set bed target temp
// M190 - Wait for bed current temp to reach target temp.
// M201 - Set max acceleration in units/s^2 for print moves (M201 X1000 Y1000)
// M202 - Set max acceleration in units/s^2 for travel moves (M202 X1000 Y1000)
// M301 - Set PID parameters P I and D
Expand Down Expand Up @@ -811,6 +809,14 @@ inline void process_commands()
break;
case 190:
break;
#if (PS_ON_PIN > -1)
case 80: // M81 - ATX Power On
SET_OUTPUT(PS_ON_PIN); //GND
break;
case 81: // M81 - ATX Power Off
SET_INPUT(PS_ON_PIN); //Floating
break;
#endif
case 82:
axis_relative_modes[3] = false;
break;
Expand Down Expand Up @@ -2039,4 +2045,4 @@ ISR(TIMER2_OVF_vect)
}
}


176 changes: 0 additions & 176 deletions Marlin/wiring.c

This file was deleted.

139 changes: 0 additions & 139 deletions Marlin/wiring_serial.c

This file was deleted.