Skip to content

Commit e588483

Browse files
committed
Push more changes and fix CMake
1 parent 4a62fab commit e588483

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

CMakeLists.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@ project(EVT
2424
LANGUAGES CXX C ASM
2525
)
2626

27-
add_library(${PROJECT_NAME} STATIC
28-
include/core/io/types/SDRAM_Device.hpp)
2927

3028
# Add sources
3129
target_sources(${PROJECT_NAME} PRIVATE

include/core/io/SDRAM.hpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -203,6 +203,10 @@ class SDRAM {
203203
}
204204
};
205205

206+
/**
207+
* Interface class to force SDRAM realizations to implement sendStartUpCommands, so that on creation everything can
208+
* be made and handled at once. No waiting or calling extra functions after calling getSDRAM()
209+
*/
206210
class SDRAMDevice {
207211
public:
208212
virtual ~SDRAMDevice() = default;

0 commit comments

Comments
 (0)