static uint8_t text[] = "===TICK===\r\n";
static uint8_t text_size = sizeof(text);
static uint8_t text2[] = "+++TOCK+++\r\n";
static uint8_t text2_size = sizeof(text2);
while (true)
{
err_code = nrf_libuarte_async_tx(&libuarte, text, text_size);
for (size_t i = 0; i < 1000000; i++)
{
}
err_code = nrf_libuarte_async_tx(&libuarte, text2, text2_size);
for (size_t i = 0; i < 10000000; i++)
{
}
}