mirror of
https://git.intern.spaceteamaachen.de/ALPAKA/sta-core.git
synced 2025-08-06 10:27:34 +00:00
Added printable prinf and template printable
This commit is contained in:
18
src/devices/template/custom_printable.cpp
Normal file
18
src/devices/template/custom_printable.cpp
Normal file
@@ -0,0 +1,18 @@
|
||||
#include <sta/devices/template/custom_printable.hpp>
|
||||
|
||||
#ifdef STA_PLATFORM_YOUR_DEVICE
|
||||
|
||||
#include <sta/debug/assert.hpp>
|
||||
|
||||
namespace sta
|
||||
{
|
||||
void CustomPrintable::print(const char * str, size_t length)
|
||||
{
|
||||
STA_ASSERT(str != nullptr);
|
||||
STA_ASSERT(length > 0);
|
||||
|
||||
// YOUR CODE HERE
|
||||
}
|
||||
} // namespace sta
|
||||
|
||||
#endif // STA_PLATFORM_YOUR_DEVICE
|
Reference in New Issue
Block a user