21 lines
824 B
C++
21 lines
824 B
C++
#pragma once
|
|
|
|
#include <fsfw/action/MinMaxParameter.h>
|
|
#include <fsfw/action/TemplateAction.h>
|
|
#include <fsfw/introspection/Enum.h>
|
|
#include <fsfw/devicehandlers/DeviceHandlerIF.h>
|
|
|
|
class PlocMemoryDumper;
|
|
|
|
FSFW_ENUM(PlocMemoryDumperCommands, DeviceCommandId_t,
|
|
((DUMP_MRAM, 1 ,"Dump Memory")))
|
|
|
|
class DumpMemoryAction : public TemplateAction<PlocMemoryDumper, DumpMemoryAction, PlocMemoryDumperCommands> {
|
|
public:
|
|
DumpMemoryAction(PlocMemoryDumper * owner): TemplateAction(owner, PlocMemoryDumperCommands::DUMP_MRAM) {}
|
|
|
|
//Memory is 512KiB
|
|
MinMaxParameter<uint32_t> startAddress = MinMaxParameter<uint32_t>::createMinMaxParameter(this, "Start Address", 0 , 0x80000);
|
|
MinMaxParameter<uint32_t> endAddress = MinMaxParameter<uint32_t>::createMinMaxParameter(this, "End Address", 0 , 0x80000);
|
|
};
|