-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPoDL-Source.ino
104 lines (85 loc) · 2.81 KB
/
PoDL-Source.ino
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
/*
* This example is used to test T1TOS PoDL source capabilities.
*
* This targets T1TOS v0.1.
*
* Author:
* Alexander Entinger
*/
/**************************************************************************************
* INCLUDE
**************************************************************************************/
#include <Arduino_10BASE_T1S.h>
#include <SPI.h>
/**************************************************************************************
* CONSTANTS
**************************************************************************************/
static uint8_t const T1S_PLCA_NODE_ID = 0; /* Doubles as PLCA coordinator. */
static IPAddress const ip_addr {192, 168, 42, 100 + T1S_PLCA_NODE_ID};
static IPAddress const network_mask{255, 255, 255, 0};
static IPAddress const gateway {192, 168, 42, 100};
static T1SPlcaSettings const t1s_plca_settings{T1S_PLCA_NODE_ID};
static T1SMacSettings const t1s_default_mac_settings;
/**************************************************************************************
* GLOBAL VARIABLES
**************************************************************************************/
auto const tc6_io = new TC6::TC6_Io(
#if defined(ARDUINO_GIGA) || defined(ARDUINO_PORTENTA_C33)
SPI1
#else
SPI
#endif
, CS_PIN
, RESET_PIN
, IRQ_PIN);
auto const tc6_inst = new TC6::TC6_Arduino_10BASE_T1S(tc6_io);
/**************************************************************************************
* SETUP/LOOP
**************************************************************************************/
void setup()
{
Serial.begin(115200);
while (!Serial) { }
delay(1000);
/* Initialize digital IO interface for interfacing
* with the LAN8651.
*/
pinMode(IRQ_PIN, INPUT_PULLUP);
attachInterrupt(digitalPinToInterrupt(IRQ_PIN),
[]() { tc6_io->onInterrupt(); },
FALLING);
/* Initialize IO module. */
if (!tc6_io->begin())
{
Serial.println("'TC6_Io::begin(...)' failed.");
for (;;) { }
}
MacAddress const mac_addr = MacAddress::create_from_uid();
if (!tc6_inst->begin(ip_addr
, network_mask
, gateway
, mac_addr
, t1s_plca_settings
, t1s_default_mac_settings))
{
Serial.println("'TC6::begin(...)' failed.");
for (;;) { }
}
Serial.print("IP\t");
Serial.println(ip_addr);
Serial.println(mac_addr);
Serial.println(t1s_plca_settings);
Serial.println(t1s_default_mac_settings);
/* A0 -> LOCAL_ENABLE -> feed power from board to network. */
tc6_inst->digitalWrite(TC6::DIO::A0, true);
/* A1 -> T1S_DISABLE -> close the switch connecting network to board. */
tc6_inst->digitalWrite(TC6::DIO::A1, true);
Serial.println("PoDL-Source");
}
void loop()
{
/* Services the hardware and the protocol stack.
* Must be called cyclic. The faster the better.
*/
tc6_inst->service();
}