Merge branch 'develop' of https://egit.irs.uni-stuttgart.de/eive/fsfw into develop

This commit is contained in:
Robin Müller 2023-04-04 01:52:29 +02:00
commit 9fca7581dd
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ UioMapper::~UioMapper() {}
ReturnValue_t UioMapper::getMappedAdress(uint32_t** address, Permissions permissions) {
ReturnValue_t result = returnvalue::OK;
int fd = open(uioFile.c_str(), O_RDWR);
int fd = open(uioFile.c_str(), O_RDWR | O_SYNC);
if (fd < 1) {
#if FSFW_CPP_OSTREAM_ENABLED == 1
sif::error << "UioMapper::getMappedAdress: Invalid UIO device file " << uioFile << std::endl;