git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@15721 27425a3e-05d8-49a3-a47f-9c15f0e5edd8

This commit is contained in:
Giovanni Di Sirio 2022-08-13 07:32:11 +00:00
parent 44417d95c3
commit 2303057419
1 changed files with 2 additions and 4 deletions

View File

@ -328,10 +328,8 @@ void sioStartOperationI(SIODriver *siop, const SIOOperation *operation) {
siop->state = SIO_ACTIVE;
#if SIO_USE_SYNCHRONIZATION == TRUE
/* If synchronization is enabled then some events are enforced by
default.*/
sioWriteEnableFlagsI(siop,
SIO_FL_ALL_DATA | SIO_FL_ALL_ERRORS | SIO_FL_ALL_PROTOCOL);
/* If synchronization is enabled then all events.*/
sioWriteEnableFlagsI(siop, SIO_FL_ALL);
#endif
}
}