Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
STM32H747_System: remove unused variable
  • Loading branch information
pennam authored Apr 3, 2025
commit 77647149461f73488349ea4cbc5ec0997e384c6a
3 changes: 1 addition & 2 deletions libraries/STM32H747_System/src/STM32H747_System.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
extern RTC_HandleTypeDef RTCHandle;

uint8_t STM32H747::readReg(uint8_t subAddress) {
char response = 0xFF;
Wire1.beginTransmission(PMIC_ADDRESS);
Wire1.write(subAddress);
Wire1.endTransmission(false);
Expand Down Expand Up @@ -115,4 +114,4 @@ bool STM32H747::useInternalOscillator(bool lowspeed) {
digitalWrite(PH_1, LOW);

return true;
}
}