From 9f95ff5b6ba01db09552b84a0ab79607060a2666 Mon Sep 17 00:00:00 2001 From: Ali Labbene Date: Wed, 11 Dec 2019 08:59:21 +0100 Subject: Official ARM version: v5.4.0 Add CMSIS V5.4.0, please refer to index.html available under \docs folder. Note: content of \CMSIS\Core\Include has been copied under \Include to keep the same structure used in existing projects, and thus avoid projects mass update Note: the following components have been removed from ARM original delivery (as not used in ST packages) - CMSIS_EW2018.pdf - .gitattributes - .gitignore - \Device - \CMSIS - \CoreValidation - \DAP - \Documentation - \DoxyGen - \Driver - \Pack - \RTOS\CMSIS_RTOS_Tutorial.pdf - \RTOS\RTX - \RTOS\Template - \RTOS2\RTX - \Utilities - All ARM/GCC projects files are deleted from \DSP, \RTOS and \RTOS2 Change-Id: Ia026c3f0f0d016627a4fb5a9032852c33d24b4d3 --- .../group__eth__mac__configuration__ctrls.html | 328 +++++++++++++++++++++ 1 file changed, 328 insertions(+) create mode 100644 docs/Driver/html/group__eth__mac__configuration__ctrls.html (limited to 'docs/Driver/html/group__eth__mac__configuration__ctrls.html') diff --git a/docs/Driver/html/group__eth__mac__configuration__ctrls.html b/docs/Driver/html/group__eth__mac__configuration__ctrls.html new file mode 100644 index 0000000..9cd1474 --- /dev/null +++ b/docs/Driver/html/group__eth__mac__configuration__ctrls.html @@ -0,0 +1,328 @@ + + + + + +Ethernet MAC Configuration +CMSIS-Driver: Ethernet MAC Configuration + + + + + + + + + + + + + + +
+
+ + + + + + + +
+
CMSIS-Driver +  Version 2.6.0 +
+
Peripheral Interface for Middleware and Application Code
+
+
+ +
+
    + +
+
+ + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
Ethernet MAC Configuration
+
+
+ +

Specifies speed mode, link mode, checksum, and frame filtering modes. +More...

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Macros

#define ARM_ETH_MAC_SPEED_10M   (ARM_ETH_SPEED_10M << ARM_ETH_MAC_SPEED_Pos)
 10 Mbps link speed More...
 
#define ARM_ETH_MAC_SPEED_100M   (ARM_ETH_SPEED_100M << ARM_ETH_MAC_SPEED_Pos)
 100 Mbps link speed More...
 
#define ARM_ETH_MAC_SPEED_1G   (ARM_ETH_SPEED_1G << ARM_ETH_MAC_SPEED_Pos)
 1 Gpbs link speed More...
 
#define ARM_ETH_MAC_DUPLEX_HALF   (ARM_ETH_DUPLEX_HALF << ARM_ETH_MAC_DUPLEX_Pos)
 Half duplex link. More...
 
#define ARM_ETH_MAC_DUPLEX_FULL   (ARM_ETH_DUPLEX_FULL << ARM_ETH_MAC_DUPLEX_Pos)
 Full duplex link. More...
 
#define ARM_ETH_MAC_LOOPBACK   (1UL << 4)
 Loop-back test mode. More...
 
#define ARM_ETH_MAC_CHECKSUM_OFFLOAD_RX   (1UL << 5)
 Receiver Checksum offload. More...
 
#define ARM_ETH_MAC_CHECKSUM_OFFLOAD_TX   (1UL << 6)
 Transmitter Checksum offload. More...
 
#define ARM_ETH_MAC_ADDRESS_BROADCAST   (1UL << 7)
 Accept frames with Broadcast address. More...
 
#define ARM_ETH_MAC_ADDRESS_MULTICAST   (1UL << 8)
 Accept frames with any Multicast address. More...
 
#define ARM_ETH_MAC_ADDRESS_ALL   (1UL << 9)
 Accept frames with any address (Promiscuous Mode) More...
 
+

Description

+

Specifies speed mode, link mode, checksum, and frame filtering modes.

+

The function ARM_ETH_MAC_Control with control = ARM_ETH_MAC_CONFIGURE configures the Ethernet MAC interface as specified with arg listed bellow.

+

Macro Definition Documentation

+ +
+
+ + + + +
#define ARM_ETH_MAC_SPEED_10M   (ARM_ETH_SPEED_10M << ARM_ETH_MAC_SPEED_Pos)
+
+ +

10 Mbps link speed

+ +
+
+ +
+
+ + + + +
#define ARM_ETH_MAC_SPEED_100M   (ARM_ETH_SPEED_100M << ARM_ETH_MAC_SPEED_Pos)
+
+ +

100 Mbps link speed

+ +
+
+ +
+
+ + + + +
#define ARM_ETH_MAC_SPEED_1G   (ARM_ETH_SPEED_1G << ARM_ETH_MAC_SPEED_Pos)
+
+ +

1 Gpbs link speed

+ +
+
+ +
+
+ + + + +
#define ARM_ETH_MAC_DUPLEX_HALF   (ARM_ETH_DUPLEX_HALF << ARM_ETH_MAC_DUPLEX_Pos)
+
+ +

Half duplex link.

+ +
+
+ +
+
+ + + + +
#define ARM_ETH_MAC_DUPLEX_FULL   (ARM_ETH_DUPLEX_FULL << ARM_ETH_MAC_DUPLEX_Pos)
+
+ +

Full duplex link.

+ +
+
+ +
+
+ + + + +
#define ARM_ETH_MAC_LOOPBACK   (1UL << 4)
+
+ +

Loop-back test mode.

+ +
+
+ +
+
+ + + + +
#define ARM_ETH_MAC_CHECKSUM_OFFLOAD_RX   (1UL << 5)
+
+ +

Receiver Checksum offload.

+ +
+
+ +
+
+ + + + +
#define ARM_ETH_MAC_CHECKSUM_OFFLOAD_TX   (1UL << 6)
+
+ +

Transmitter Checksum offload.

+ +
+
+ +
+
+ + + + +
#define ARM_ETH_MAC_ADDRESS_BROADCAST   (1UL << 7)
+
+ +

Accept frames with Broadcast address.

+ +
+
+ +
+
+ + + + +
#define ARM_ETH_MAC_ADDRESS_MULTICAST   (1UL << 8)
+
+ +

Accept frames with any Multicast address.

+ +
+
+ +
+
+ + + + +
#define ARM_ETH_MAC_ADDRESS_ALL   (1UL << 9)
+
+ +

Accept frames with any address (Promiscuous Mode)

+ +
+
+
+
+ + + + -- cgit