From 3c950d6982d9a40b3fa1c5292b6b108845c8d06f Mon Sep 17 00:00:00 2001 From: itzandroidtab <9889898+itzandroidtab@users.noreply.github.com> Date: Sun, 11 Aug 2024 13:42:42 +0200 Subject: [PATCH] changed to default delay implementation (still systick) --- main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.cpp b/main.cpp index 89ac025..0a65883 100644 --- a/main.cpp +++ b/main.cpp @@ -28,7 +28,7 @@ int main() { // wait until we are configured. (this happens after the host has connected) while (!usb::device::is_configured()) { - klib::delay(klib::time::ms(10)); + klib::delay(klib::time::ms(10)); klib::cout << "."; } klib::cout << klib::endl; @@ -40,6 +40,6 @@ int main() { usb::device::write(0x00, -1, 0); usb::device::write(0x00, 1, 0); - klib::delay(klib::time::s{10}); + klib::delay(klib::time::s{10}); } }