| 1259 | } |
| 1260 | |
| 1261 | MessageType GCodeBuffer::GetResponseMessageType() const noexcept |
| 1262 | { |
| 1263 | #if HAS_SBC_INTERFACE |
| 1264 | if (machineState->lastCodeFromSbc) |
| 1265 | { |
| 1266 | return (MessageType)((1u << codeChannel.ToBaseType()) | BinaryCodeReplyFlag); |
| 1267 | } |
| 1268 | #endif |
| 1269 | return responseMessageType; |
| 1270 | } |
| 1271 | |
| 1272 | FilePosition GCodeBuffer::GetJobFilePosition() const noexcept |
| 1273 | { |
no outgoing calls
no test coverage detected