Skip to content

Commit

Permalink
fixed compilation workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
cristidragomir97 committed Jun 3, 2024
1 parent 91c927b commit 1a4e9dd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/compile-examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
platforms: |
- name: arduino:renesas_portenta
artifact-name-suffix: arduino-renesas_portenta-portenta_c33
additional-sketch-paths: examples/ChargStandby_WakeFromRTC_C33er
additional-sketch-paths: examples/Standby_WakeFromRTC_C33
- fqbn: arduino:mbed_portenta:envie_m7
platforms: |
- name: arduino:mbed_portenta
Expand Down
2 changes: 1 addition & 1 deletion src/Board.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ void Board::setAllPeripheralsPower(bool on){
this -> setExternalPowerEnabled(on);
this -> setAnalogDigitalConverterPower(on);
#else if defined(ARDUINO_PORTENTA_H7)
// On the H7 several chips need different voltages, so we cannot turn the lanes that are dependent on eachother separately.
// On the H7 several chips need different voltages, so we cannot turn the lanes that are dependent on each other separately.
// This should only be used when going into standby mode, as turning off the USB-C PHY, Ethernet or Video bridge might cause undefined behaviour.
if(on){
PMIC.getControl() -> turnLDO2On(Ldo2Mode::Normal);
Expand Down

0 comments on commit 1a4e9dd

Please sign in to comment.