Skip to content

Commit cb34552

Browse files
GitHub BuildGitHub Build
authored andcommitted
Applied Formatting Changes During GitHub Build
1 parent 4b63dc1 commit cb34552

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

include/core/io/SDRAM.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#include <HALf4/stm32f4xx_hal.h>
77

88
namespace core::io {
9-
class SDRAMDevice;
9+
class SDRAMDevice;
1010
/**
1111
* Interface for configuring and accessing external SDRAM.
1212
* Provides clock frequency functions
@@ -209,7 +209,7 @@ class SDRAM {
209209
*/
210210
class SDRAMDevice {
211211
public:
212-
virtual ~SDRAMDevice() = default;
212+
virtual ~SDRAMDevice() = default;
213213
virtual SDRAM::Status sendStartUpCommands(SDRAM& controller) = 0;
214214
};
215215

include/core/io/platform/f4xx/SDRAMf4xx.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ namespace core::io {
2424
*/
2525
class SDRAMf4xx : public SDRAM {
2626
public:
27-
static constexpr auto SDRAM_BANK1 = 0xC0000000;
28-
static constexpr auto SDRAM_BANK2 = 0xD0000000;
27+
static constexpr auto SDRAM_BANK1 = 0xC0000000;
28+
static constexpr auto SDRAM_BANK2 = 0xD0000000;
2929

3030
/**
3131
* Initializes an FMC device by enabling the specific peripheral clock,
@@ -38,7 +38,7 @@ class SDRAMf4xx : public SDRAM {
3838
*
3939
*/
4040
SDRAMf4xx(SDRAMPinGroup& pins, const SDRAMInitConfig& sdramInitConfig, const SDRAMTimingConfig& sdramTimingConfig,
41-
SDRAMDevice& device);
41+
SDRAMDevice& device);
4242

4343
/**
4444
* Enable write protection for the sdram

include/core/manager.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@ SPI& getSPI(GPIO* CSPins[], uint8_t pinLength) {
339339
#ifdef SDRAM_SUPPORTED
340340
template<SDRAM::SDRAMPinGroup& pins>
341341
SDRAM& getSDRAM(const SDRAM::SDRAMInitConfig& initConfig, const SDRAM::SDRAMTimingConfig& timingConfig,
342-
SDRAMDevice& device) {
342+
SDRAMDevice& device) {
343343
#ifdef STM32F4xx
344344
static SDRAMf4xx fmc(pins, initConfig, timingConfig, device);
345345
return fmc;

0 commit comments

Comments
 (0)