Welcome to mirror list, hosted at ThFree Co, Russian Federation.

CommandProcessor.h « CAN « src - github.com/Duet3D/RepRapFirmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 07566bb12208eedb68e25bb3874657b3ecfb4d3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*
 * CommandProcessor.h
 *
 *  Created on: 12 Aug 2019
 *      Author: David
 */

#ifndef SRC_CAN_COMMANDPROCESSOR_H_
#define SRC_CAN_COMMANDPROCESSOR_H_

#include "RepRapFirmware.h"

#if SUPPORT_CAN_EXPANSION

class CanMessageBuffer;

namespace CommandProcessor
{
	void ProcessReceivedMessage(CanMessageBuffer *buf) noexcept;	// Process a received broadcast or request message and free the message buffer
}

#endif

#endif /* SRC_CAN_COMMANDPROCESSOR_H_ */