prototype branch

This commit is contained in:
2020-04-30 11:45:54 +02:00
188 changed files with 4805 additions and 1900 deletions

View File

@ -68,10 +68,6 @@ void ServiceInterfaceBuffer::putChars(char const* begin, char const* end) {
}
#endif
/**
* TODO: This is architecture specific. Maybe there is a better solution
* to move this into the Bsp folder..
*/
#ifdef UT699
#include <framework/osal/rtems/Interrupt.h>

View File

@ -9,10 +9,12 @@
// Unfortunately, there must be a forward declaration of log_fe
// (MUST be defined in main), to let the system know where to write to.
namespace sif {
extern std::ostream debug;
extern std::ostream info;
extern std::ostream warning;
extern std::ostream error;
}
class ServiceInterfaceStream :
public std::basic_ostream<char, std::char_traits<char>> {