diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2024-10-28 23:51:15 -0600 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2024-10-28 23:51:15 -0600 |
commit | 4d185da010aea1d307c8ff7807ef3d4359083ed0 (patch) | |
tree | 0eef6621e8cadfb827e35cc0f426fdebb6096d10 /libhw/rp2040_bootclock.c | |
parent | 52d48b9ea39a990295fdaf53dea492637051bd10 (diff) |
wip host net timeout
Diffstat (limited to 'libhw/rp2040_bootclock.c')
-rw-r--r-- | libhw/rp2040_bootclock.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/libhw/rp2040_bootclock.c b/libhw/rp2040_bootclock.c new file mode 100644 index 0000000..0484910 --- /dev/null +++ b/libhw/rp2040_bootclock.c @@ -0,0 +1,13 @@ +/* libhw/rp2040_bootclock.c - <libhw/generic/bootclock.h> implementation for pico-sdk + * + * Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com> + * SPDX-License-Identifier: AGPL-3.0-or-later + */ + +#include <hardware/timer.h> /* pico-sdk:hardware_timer */ + +#include <libhw/generic/bootclock.h> + +uint64_t bootclock_get_ns(void) { + return time_us_64()*(NS_PER_S/US_PER_S); +} |