Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions examples/Master/Master.ino
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@
*/

// Include LIN Stack library
#include <lin_stack.h>
#include <LINBus_stack.h>

lin_stack LIN2(2); // Creating LIN Stack objects, 2 - second channel
//lin_stack LIN1(1); // Creating LIN Stack objects, 1 - first channel
LINBus_stack LIN2(Serial, 19200); // Creating LIN Stack objects, 2 - second channel
//LINBus_stack LIN1(Serial, 19200); // Creating LIN Stack objects, 1 - first channel

void setup() {
// Nothing to do here.
Expand Down