6:81a2208f13e4 | 7:e336d6afc5a6 |
---|---|
1 # -*- coding: utf-8 -*- | |
2 | |
3 # Copyright (c) 2019 Detlev Offenbach <detlev@die-offenbachs.de> | |
4 # | |
5 | |
6 """ | |
7 Module containing stubs for API generation of the 'wiznet' module. | |
8 """ | |
9 | |
10 class WIZNET5K(): | |
11 connected = 0 | |
12 dhcp = 0 | |
13 | |
14 def __init__(self, spi, cs, rst, dhcp=True): | |
15 pass | |
16 | |
17 def ifconfig(self, params=None): | |
18 pass |