Home
last modified time | relevance | path

Searched full:link (Results 1 – 25 of 34) sorted by relevance

12

/cmsis_6-latest/CMSIS/Driver/Include/
DDriver_ETH.h51 \brief Ethernet link speed
53 #define ARM_ETH_SPEED_10M (0U) ///< 10 Mbps link speed
54 #define ARM_ETH_SPEED_100M (1U) ///< 100 Mbps link speed
55 #define ARM_ETH_SPEED_1G (2U) ///< 1 Gpbs link speed
60 #define ARM_ETH_DUPLEX_HALF (0U) ///< Half duplex link
61 #define ARM_ETH_DUPLEX_FULL (1U) ///< Full duplex link
64 \brief Ethernet link state
67 ARM_ETH_LINK_DOWN, ///< Link is down
68 ARM_ETH_LINK_UP ///< Link is up
72 \brief Ethernet link information
[all …]
DDriver_ETH_PHY.h59 …ETH_PHY_SPEED_10M (ARM_ETH_SPEED_10M << ARM_ETH_PHY_SPEED_Pos) ///< 10 Mbps link speed
60 …TH_PHY_SPEED_100M (ARM_ETH_SPEED_100M << ARM_ETH_PHY_SPEED_Pos) ///< 100 Mbps link speed
61 …_ETH_PHY_SPEED_1G (ARM_ETH_SPEED_1G << ARM_ETH_PHY_SPEED_Pos) ///< 1 Gpbs link speed
64 …M_ETH_PHY_DUPLEX_HALF (ARM_ETH_DUPLEX_HALF << ARM_ETH_PHY_DUPLEX_Pos) ///< Half duplex link
65 …M_ETH_PHY_DUPLEX_FULL (ARM_ETH_DUPLEX_FULL << ARM_ETH_PHY_DUPLEX_Pos) ///< Full duplex link
110 \brief Get Ethernet PHY Device Link state.
111 \return current link status \ref ARM_ETH_LINK_STATE
115 \brief Get Ethernet PHY Device Link information.
116 \return current link parameters \ref ARM_ETH_LINK_INFO
135 … ///< Pointer to \ref ARM_ETH_PHY_GetLinkState : Get Ethernet PHY Device Link state.
[all …]
DDriver_ETH_MAC.h83 …ETH_MAC_SPEED_10M (ARM_ETH_SPEED_10M << ARM_ETH_MAC_SPEED_Pos) ///< 10 Mbps link speed
84 …TH_MAC_SPEED_100M (ARM_ETH_SPEED_100M << ARM_ETH_MAC_SPEED_Pos) ///< 100 Mbps link speed
85 …_ETH_MAC_SPEED_1G (ARM_ETH_SPEED_1G << ARM_ETH_MAC_SPEED_Pos) ///< 1 Gpbs link speed
88 …M_ETH_MAC_DUPLEX_HALF (ARM_ETH_DUPLEX_HALF << ARM_ETH_MAC_DUPLEX_Pos) ///< Half duplex link
89 …M_ETH_MAC_DUPLEX_FULL (ARM_ETH_DUPLEX_FULL << ARM_ETH_MAC_DUPLEX_Pos) ///< Full duplex link
/cmsis_6-latest/CMSIS/Documentation/Doxygen/Driver/src/
DDriver_ETH.c7 an Ethernet MAC (Media Access Control) data-link layer that interfaces to an Ethernet PHY (Physical…
93 static ARM_ETH_LINK_STATE ethernet_link; // current link status
96 ARM_ETH_LINK_STATE link;
98 link = phy->GetLinkState ();
99 if (link == ethernet_link) {
100 return; // link state unchanged
102 // link state changed
103 ethernet_link = link;
104 if (link == ARM_ETH_LINK_UP) { // start transfer
171 The Ethernet Link status shows if the communication is currently established (up) or interrupted (d…
[all …]
DDriver_ETH_PHY.c13 the state of the link (up/down), duplex mode, speed, and to restart auto-negotiation etc. SMI is a …
206 …ED_10M </td><td rowspan="3"> 0..1 </td><td rowspan="3">Link Speed </td> <td>Set the link spee…
207 … </td> <td>Set the link speed to \token{100…
208 … </td> <td>Set the link speed to \token{1 …
209 …LEX_HALF </td><td rowspan="2"> 2 </td><td rowspan="2">Link Mode </td> <td>Set the link mode…
210 … </td> <td>Set the link mode to full duplex…
251 …function \b ARM_ETH_PHY_GetLinkState retrieves the connection status of the physical Ethernet link.
264 mode (half/full duplex) and communication speed. Information is only valid when link is up (see \re…
DDriver_ETH_MAC.c364 … </td><td rowspan="3"> 0..1 </td><td rowspan="3">Link Speed </td><td>Set the link spee…
365 … <td>Set the link speed to \token{100…
366 … <td>Set the link speed to \token{1 …
367 … </td><td rowspan="2"> 2 </td><td rowspan="2">Link Mode </td><td>Set the link mode…
368 … <td>Set the link mode to full duplex…
512 …- \ref eth_mac_configuration_ctrls specifies speed mode, link mode, checksum, and frame filtering…
542 \brief Specifies speed mode, link mode, checksum, and frame filtering modes.
DDriver_WiFi.c389 \details Specifies the link-local IPv6 address.
545 \ref ARM_WIFI_IP6_LINK_LOCAL | IPv6 link-local address | ip6 | u…
/cmsis_6-latest/CMSIS/Documentation/Doxygen/style_template/
Dnavtree.js74 function storeLink(link) argument
77 window.localStorage.setItem('navpath',link);
172 function newNode(o, po, text, link, childrenData, lastNode) argument
200 if (link) {
202 if (link.substring(0,1)=='^') {
203 url = link.substring(1);
204 link = url;
206 url = node.relpath+link;
208 a.className = stripPath(link.replace('#',':'));
209 if (link.indexOf('#')!=-1) {
[all …]
Dextra_stylesheet.css38 --page-link-color: var(--arm_blue);
39 --page-visited-link-color: var(--arm_blue);
175 --code-link-color: var(--arm_blue);
176 --code-external-link-color: #4665A2;
183 --fragment-lineno-link-fg-color: #4665A2;
184 --fragment-lineno-link-bg-color: #D8D8D8;
185 --fragment-lineno-link-hover-fg-color: #4665A2;
186 --fragment-lineno-link-hover-bg-color: #C8C8C8;
192 --tooltip-link-color: #4665A2;
216 --page-link-color: var(--arm_light_blue);
[all …]
Dheader.html15 <link href="$relpath^doxygen.css" rel="stylesheet" type="text/css" />
/cmsis_6-latest/CMSIS/CoreValidation/Project/
DValidation.csolution.yml11 Link:
14 Link:
18 Link:
/cmsis_6-latest/CMSIS/CoreValidation/Layer/Target/CA9/
DTarget.clayer.yml13 Link: [--config generic_cortex.icf]
/cmsis_6-latest/CMSIS/CoreValidation/Layer/Target/CA7/
DTarget.clayer.yml13 Link: [--config generic_cortex.icf]
/cmsis_6-latest/CMSIS/CoreValidation/Layer/Target/CA5/
DTarget.clayer.yml13 Link: [--config generic_cortex.icf]
/cmsis_6-latest/CMSIS/CoreValidation/Layer/Target/CM3/RTE/Device/ARMCM3/
Dtiac_arm.cmd11 -c /* LINK USING C CONVENTIONS */
/cmsis_6-latest/CMSIS/CoreValidation/Layer/Target/CM0plus/RTE/Device/ARMCM0P/
Dtiac_arm.cmd11 -c /* LINK USING C CONVENTIONS */
/cmsis_6-latest/CMSIS/CoreValidation/Layer/Target/CM4/RTE/Device/ARMCM4/
Dtiac_arm.cmd11 -c /* LINK USING C CONVENTIONS */
/cmsis_6-latest/CMSIS/CoreValidation/Layer/Target/CM0/RTE/Device/ARMCM0/
Dtiac_arm.cmd11 -c /* LINK USING C CONVENTIONS */
/cmsis_6-latest/
DLICENSE45 separable from, or merely link (or bind by name) to the interfaces of,
/cmsis_6-latest/CMSIS/CoreValidation/
DLICENSE.txt45 separable from, or merely link (or bind by name) to the interfaces of,
/cmsis_6-latest/CMSIS/Documentation/Doxygen/DSP/
DDSP.dxy.in365 # When enabled doxygen tries to link words that correspond to documented
366 # classes, or namespaces to their corresponding documentation. Such a link can
1184 # REFERENCED_BY_RELATION lists will link to the source code. Otherwise they will
1185 # link to the documentation.
/cmsis_6-latest/CMSIS/Documentation/Doxygen/Driver/
DDriver.dxy.in367 # When enabled doxygen tries to link words that correspond to documented
368 # classes, or namespaces to their corresponding documentation. Such a link can
1229 # REFERENCED_BY_RELATION lists will link to the source code. Otherwise they will
1230 # link to the documentation.
/cmsis_6-latest/CMSIS/Documentation/Doxygen/Core_A/
DCore_A.dxy.in365 # When enabled doxygen tries to link words that correspond to documented
366 # classes, or namespaces to their corresponding documentation. Such a link can
1204 # REFERENCED_BY_RELATION lists will link to the source code. Otherwise they will
1205 # link to the documentation.
/cmsis_6-latest/CMSIS/Documentation/Doxygen/DAP/
DDAP.dxy.in365 # When enabled doxygen tries to link words that correspond to documented
366 # classes, or namespaces to their corresponding documentation. Such a link can
1184 # REFERENCED_BY_RELATION lists will link to the source code. Otherwise they will
1185 # link to the documentation.
/cmsis_6-latest/CMSIS/Documentation/Doxygen/Compiler/
DCompiler.dxy.in365 # When enabled doxygen tries to link words that correspond to documented
366 # classes, or namespaces to their corresponding documentation. Such a link can
1184 # REFERENCED_BY_RELATION lists will link to the source code. Otherwise they will
1185 # link to the documentation.

12