1
0
forked from fsfw/fsfw

Merge branch 'development' into mueller/refactor_serial_linux

This commit is contained in:
2022-11-14 14:36:31 +01:00
14 changed files with 96 additions and 60 deletions

View File

@ -5,6 +5,14 @@
#include <string>
#include <unordered_map>
#ifdef PLATFORM_WIN
// Defined in Windows header for whatever reason, and leads to nameclash issues with
// class enums which have entries of the same name.
#undef IN
#undef OUT
#undef CALLBACK
#endif
using gpioId_t = uint16_t;
namespace gpio {

View File

@ -1,5 +1,5 @@
#include <stdio.h>
#include <stdbool.h>
#include <stdio.h>
void __attribute__((weak)) printChar(const char* character, bool errStream) {
if (errStream) {