Merge pull request #3009 from leptun/PFW-1144-LongPathName
"M27 P" support. Get current file absolute filename (file path)
This commit is contained in:
commit
40e45c5eaa
3 changed files with 39 additions and 26 deletions
Firmware
|
@ -5841,9 +5841,15 @@ if(eSoundMode!=e_SOUND_MODE_SILENT)
|
|||
|
||||
/*!
|
||||
### M27 - Get SD status <a href="https://reprap.org/wiki/G-code#M27:_Report_SD_print_status">M27: Report SD print status</a>
|
||||
#### Usage
|
||||
|
||||
M27 [ P ]
|
||||
|
||||
#### Parameters
|
||||
- `P` - Show full SFN path instead of LFN only.
|
||||
*/
|
||||
case 27:
|
||||
card.getStatus();
|
||||
card.getStatus(code_seen('P'));
|
||||
break;
|
||||
|
||||
/*!
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue