Files
bacnet_stack/ports/pico/mstimer_init.c
T
Testimony 17e94092a1 Add Raspberry Pi Pico port (#1232)
* Add Raspberry Pi Pico port
- Adds BACnet/IP with abstracted network layer
- Adds BACnet MS/TP support using RS485/UART
- Includes README with examples

* Add Pico 2 MS/TP demo, CI, and docs
2026-03-25 08:22:09 -05:00

20 lines
441 B
C

/**************************************************************************
*
* Copyright (C) 2025 Testimony Adams <adamstestimony@gmail.com>
*
* SPDX-License-Identifier: GPL-2.0-or-later WITH GCC-exception-2.0
*
*********************************************************************/
#include "mstimer_init.h"
void systimer_init(void)
{
//
}
unsigned long mstimer_now(void)
{
return to_ms_since_boot(get_absolute_time());
}