At the moment there is wchar in Task and char for serial port.
Possible solutions:
There should be a "global" definition of the character type, which all use. ❌ Not good, as it is not necessary, that all use the same type. Instead there may be for example different serial classes. Specifying the character type multiple times would be accidental duplication (OK).
At the moment there is
wchar
inTask
andchar
for serial port.Possible solutions: