Commit b62887d 1 parent 83b7f60 commit b62887d Copy full SHA for b62887d
File tree 2 files changed +8
-4
lines changed
2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 46
46
#include < Arduino.h>
47
47
#include < Board.h>
48
48
#include < MqttClient.h>
49
- #include < SerialMuxProtServer .hpp>
50
- #include " SerialMuxChannels.h "
49
+ #include < SimpleTimer .hpp>
50
+ #include < StateMachine.h >
51
51
#include < V2VClient.h>
52
+ #include " SerialMuxChannels.h"
52
53
#include " LongitudinalController.h"
53
- #include < SimpleTimer.hpp>
54
54
55
55
/* *****************************************************************************
56
56
* Macros
@@ -175,7 +175,7 @@ class App
175
175
*
176
176
* @tparam tMaxChannels set to MAX_CHANNELS, defined in SerialMuxChannels.h.
177
177
*/
178
- SerialMuxProtServer<MAX_CHANNELS> m_smpServer;
178
+ SMPServer m_smpServer;
179
179
180
180
/* *
181
181
* MQTTClient Instance
Original file line number Diff line number Diff line change 37
37
*****************************************************************************/
38
38
39
39
#include <Arduino.h>
40
+ #include <SerialMuxProtServer.hpp>
40
41
41
42
/******************************************************************************
42
43
* Macros
73
74
* Types and Classes
74
75
*****************************************************************************/
75
76
77
+ /** SerialMuxProt Server with fixed template argument. */
78
+ typedef SerialMuxProtServer < MAX_CHANNELS > SMPServer ;
79
+
76
80
/** Struct of the "Command" channel payload. */
77
81
typedef struct _Command
78
82
{
You can’t perform that action at this time.
0 commit comments