Rev 736 | Only display areas with differences | Regard whitespace | Details | Blame | Last modification | View Log | SVN | RSS feed
| Rev 736 | Rev 739 | ||
|---|---|---|---|
| 1 | ########################################################### |
1 | ########################################################### |
| 2 | # |
2 | # |
| 3 | # IP/UDP interface, connects with can through an |
3 | # IP/UDP interface, connects with can through an |
| 4 | # ethernet node |
4 | # ethernet node |
| 5 | # |
5 | # |
| 6 | ########################################################### |
6 | ########################################################### |
| 7 | 7 | ||
| 8 | class NodeIfUDP: |
8 | class NodeIfUDP: |
| 9 | config = [] |
9 | config = [] |
| 10 | 10 | ||
| 11 | def __init__(self, cfg): |
11 | def __init__(self, cfg): |
| 12 | global config |
12 | global config |
| 13 | config = cfg |
13 | config = cfg |
| 14 | 14 | ||
| 15 | def start(self): |
15 | def start(self): |
| 16 | pass |
16 | pass |
| 17 | 17 | ||
| 18 | def stop(self): |
18 | def stop(self): |
| 19 | pass |
19 | pass |
| - | 20 | ||
| - | 21 | def running(self): |
|
| - | 22 | pass |
|
| - | 23 | ||
| 20 | - | ||