You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
362 B
C++
14 lines
362 B
C++
#ifdef TARGET_LPC1768
|
|
#include "../../inc/MarlinConfigPre.h"
|
|
|
|
#if ENABLED(EMERGENCY_PARSER)
|
|
#include "../../feature/emergency_parser.h"
|
|
EmergencyParser::State emergency_state;
|
|
bool CDC_RecvCallback(const char buffer) {
|
|
emergency_parser.update(emergency_state, buffer);
|
|
return true;
|
|
}
|
|
#endif // ENABLED(EMERGENCY_PARSER)
|
|
|
|
#endif // TARGET_LPC1768
|