/firmware/src/Extruder/DebugPacketProcessor.hh
http://github.com/makerbot/G3Firmware · C++ Header · 20 lines · 5 code · 5 blank · 10 comment · 0 complexity · b2ca1f186bccd72d3b477fb1a74b0857 MD5 · raw file
- /*
- * DebugPacketProcessor.hh
- *
- * Created on: Dec 9, 2009
- * Author: phooky
- */
- #ifndef UTIL_DEBUGPACKETPROCESSOR_HH_
- #define UTIL_DEBUGPACKETPROCESSOR_HH_
- #include "Packet.hh"
- /// Identify a debug packet, and process it. If the packet is a debug
- /// packet, return true, indicating that no further processing should
- /// be done. Otherwise, processing of this packet should drop through
- /// to the next processing level.
- bool processDebugPacket(const InPacket& from_host, OutPacket& to_host);
- #endif // UTIL_DEBUGPACKETPROCESSOR_HH_