1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

can: use tabs instead of spaces for indention

This commit is contained in:
Steffen Vogel 2020-07-08 13:30:23 +02:00
parent c4b21e5f26
commit 61cfd9e195

View file

@ -1,60 +1,62 @@
logging = {
level = "debug"
},
nodes = {
can_node1 = {
type = "can",
interface_name = "vcan0",
sample_rate = 500000,
in = {
signals = ({
name = "sigin1",
unit = "Volts",
type = "integer",
enabled = true,
can_id = 66,
can_size = 8,
can_offset = 0
},
{
name = "sigin2",
unit = "Volts",
type = "float",
enabled = true,
can_id = 67,
can_size = 4,
can_offset = 0
},
{
name = "sigin3",
unit = "Volts",
type = "integer",
enabled = true,
can_id = 66,
can_size = 4,
can_offset = 4
})
},
out = {
signals = (
{
type = "float",
can_id = 1,
can_size = 4,
can_offset = 0
},
{
type = "float",
can_id = 1,
can_size = 4,
can_offset = 4
},
{
type = "float",
can_id = 2,
can_size = 8,
can_offset = 0
}),
}
}
can_node1 = {
type = "can"
interface_name = "vcan0"
sample_rate = 500000
in = {
signals = (
{
name = "sigin1",
unit = "Volts",
type = "integer",
enabled = true,
can_id = 66,
can_size = 8,
can_offset = 0
},
{
name = "sigin2",
unit = "Volts",
type = "float",
enabled = true,
can_id = 67,
can_size = 4,
can_offset = 0
},
{
name = "sigin3",
unit = "Volts",
type = "integer",
enabled = true,
can_id = 66,
can_size = 4,
can_offset = 4
}
)
}
out = {
signals = (
{
type = "float",
can_id = 1,
can_size = 4,
can_offset = 0
},
{
type = "float",
can_id = 1,
can_size = 4,
can_offset = 4
},
{
type = "float",
can_id = 2,
can_size = 8,
can_offset = 0
}
)
}
}
}