This commit is contained in:
parent
43cda300e3
commit
9c07a26615
@ -199,7 +199,6 @@ ReturnValue_t ScexDeviceHandler::interpretDeviceReply(DeviceCommandId_t id, cons
|
|||||||
auto prefix = sdcMan.getCurrentMountPrefix();
|
auto prefix = sdcMan.getCurrentMountPrefix();
|
||||||
oss << prefix << "/scex/scex-" << cmdName << fileId << ".bin";
|
oss << prefix << "/scex/scex-" << cmdName << fileId << ".bin";
|
||||||
fileName = oss.str();
|
fileName = oss.str();
|
||||||
sif::info << "ScexDeviceHandler::interpretDeviceReply: FileName: " << fileName << std::endl;
|
|
||||||
ofstream out(fileName, ofstream::binary);
|
ofstream out(fileName, ofstream::binary);
|
||||||
if (out.bad()) {
|
if (out.bad()) {
|
||||||
sif::error << "ScexDeviceHandler::interpretDeviceReply: Could not open file " << fileName
|
sif::error << "ScexDeviceHandler::interpretDeviceReply: Could not open file " << fileName
|
||||||
@ -216,8 +215,6 @@ ReturnValue_t ScexDeviceHandler::interpretDeviceReply(DeviceCommandId_t id, cons
|
|||||||
auto prefix = sdcMan.getCurrentMountPrefix();
|
auto prefix = sdcMan.getCurrentMountPrefix();
|
||||||
oss << prefix << "/scex/scex-" << cmdName << fileId << ".bin";
|
oss << prefix << "/scex/scex-" << cmdName << fileId << ".bin";
|
||||||
fileName = oss.str();
|
fileName = oss.str();
|
||||||
sif::info << "ScexDeviceHandler::interpretDeviceReply: FileName: " << fileName
|
|
||||||
<< std::endl; // TODO remove
|
|
||||||
fileNameSet = true;
|
fileNameSet = true;
|
||||||
ofstream out(fileName, ofstream::binary);
|
ofstream out(fileName, ofstream::binary);
|
||||||
if (out.bad()) {
|
if (out.bad()) {
|
||||||
@ -355,7 +352,7 @@ void ScexDeviceHandler::setPowerSwitcher(PowerSwitchIF& powerSwitcher, power::Sw
|
|||||||
}
|
}
|
||||||
|
|
||||||
ReturnValue_t ScexDeviceHandler::initializeAfterTaskCreation() {
|
ReturnValue_t ScexDeviceHandler::initializeAfterTaskCreation() {
|
||||||
// hier checken ob `<prefix>/ordner` existiert und wenn nicht erstellen
|
|
||||||
auto mntPrefix = sdcMan.getCurrentMountPrefix();
|
auto mntPrefix = sdcMan.getCurrentMountPrefix();
|
||||||
std::filesystem::path fullFilePath = mntPrefix;
|
std::filesystem::path fullFilePath = mntPrefix;
|
||||||
fullFilePath /= "scex";
|
fullFilePath /= "scex";
|
||||||
|
Loading…
Reference in New Issue
Block a user