9 lines
263 B
C++
9 lines
263 B
C++
#include <bsp_hosted/comIF/ArduinoCookie.h>
|
|
|
|
ArduinoCookie::ArduinoCookie(Protocol_t protocol, uint8_t address,
|
|
const size_t maxReplySize) :
|
|
protocol(protocol), command(protocol), address(address),
|
|
maxReplySize(maxReplySize), replyBuffer(maxReplySize) {
|
|
}
|
|
|