File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed
src/modm/platform/eth/stm32 Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -228,7 +228,7 @@ Please [discover modm's peripheral drivers for your specific device][discover].
228
228
<td align =" center " >○</td >
229
229
<td align =" center " >○</td >
230
230
<td align =" center " >✕</td >
231
- <td align =" center " >○ </td >
231
+ <td align =" center " >✅ </td >
232
232
<td align =" center " >✅</td >
233
233
<td align =" center " >✕</td >
234
234
<td align =" center " >✕</td >
Original file line number Diff line number Diff line change @@ -153,11 +153,11 @@ struct ethernet
153
153
using DmaDescriptor_t = DmaDescriptor;
154
154
155
155
/* Ethernet Rx DMA Descriptor */
156
- modm_aligned (32 ) modm_fastdata
156
+ modm_aligned (32 )
157
157
static DmaDescriptor_t DmaRxDescriptorTable[RX_BUFFER_NUMBER];
158
158
159
159
/* Ethernet Tx DMA Descriptor */
160
- modm_aligned (32 ) modm_fastdata
160
+ modm_aligned (32 )
161
161
static DmaDescriptor_t DmaTxDescriptorTable[TX_BUFFER_NUMBER];
162
162
163
163
static DmaDescriptor_t *RxDescriptor; /* !< Rx descriptor to Get */
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ This module implements TCP over Ethernet via the LAN8720A transceiver.
23
23
device = options [":target" ]
24
24
if not device .has_driver ("eth:stm32*" ):
25
25
return False
26
- if device .identifier .family not in ["f7" ]:
26
+ if device .identifier .family not in ["f7" , "f4" ]:
27
27
return False
28
28
module .depends (":platform:eth" , ":driver:lan8720a" )
29
29
return True
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ def prepare(module, options):
21
21
if not device .has_driver ("eth:stm32*" ):
22
22
return False
23
23
# FIXME the driver is for F7 only right now
24
- if device .identifier ["family" ] not in ["f7" ]:
24
+ if device .identifier ["family" ] not in ["f7" , "f4" ]:
25
25
return False
26
26
27
27
module .depends (":architecture:delay" ,
You can’t perform that action at this time.
0 commit comments