We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent acfceb1 commit 212b691Copy full SHA for 212b691
targets/TARGET_STM/TARGET_STM32H7/TARGET_STM32H747xI/TARGET_GIGA/giga_power.cpp
@@ -26,27 +26,4 @@
26
******************************************************************************/
27
void enableEthPowerSupply(void)
28
{
29
- /* Ensure ETH power supply */
30
- mbed::I2C i2c(PB_7, PB_6);
31
-
32
- char data[2];
33
34
- // LDO3 to 1.2V
35
- data[0] = 0x52;
36
- data[1] = 0x9;
37
- i2c.write(8 << 1, data, sizeof(data));
38
- data[0] = 0x53;
39
- data[1] = 0xF;
40
41
42
- // SW2 to 3.3V (SW2_VOLT)
43
- data[0] = 0x3B;
44
45
46
47
- // SW1 to 3.0V (SW1_VOLT)
48
- data[0] = 0x35;
49
50
51
52
}
0 commit comments