11 lines
227 B
Plaintext
11 lines
227 B
Plaintext
// Copyright 2014-2021 XMOS LIMITED.
|
|
// This Software is subject to the terms of the XMOS Public Licence: Version 1.
|
|
|
|
#define DEBUG_UNIT unit
|
|
#include "debug_print.h"
|
|
|
|
void unit_function()
|
|
{
|
|
debug_printf("Unit print\n");
|
|
}
|