2020-12-14 13:03:47 +01:00
|
|
|
#include <bsp_hosted/comIF/ArduinoCookie.h>
|
2020-10-01 02:06:39 +02:00
|
|
|
|
|
|
|
ArduinoCookie::ArduinoCookie(Protocol_t protocol, uint8_t address,
|
|
|
|
const size_t maxReplySize) :
|
|
|
|
protocol(protocol), command(protocol), address(address),
|
|
|
|
maxReplySize(maxReplySize), replyBuffer(maxReplySize) {
|
|
|
|
}
|
|
|
|
|