Logo
Explore Help
Sign In
dax/qmk
1
0
Fork 0
You've already forked qmk
Code Issues Pull Requests Actions 2 Packages Projects Releases Wiki Activity
Files
master
qmk/keyboards/handwired/onekey/keymaps/chibios_waiting_test/config.h

13 lines
273 B
C
Raw Permalink Normal View History

[Core] Use polled waiting on ChibiOS platforms that support it (#17607) * Use polled waiting on platforms that support it Due to context switching overhead waiting a very short amount of time on a sleeping thread is often not accurate and in fact not usable for timing critical usage i.e. in a driver. Thus we use polled waiting for ranges in the us range on platforms that support it instead. The fallback is the thread sleeping mechanism. This includes: * ARM platforms with CYCCNT register (ARMv7, ARMv8) this is incremented at CPU clock frequency * GD32VF103 RISC-V port with CSR_MCYCLE register this is incremented at CPU clock frequency * RP2040 ARMv6 port which uses the integrated timer peripheral which is incremented with a fixed 1MHz frequency * Use wait_us() instead of chSysPolledDelayX ...as it is powered by busy waiting now. * Add chibios waiting methods test bench
2022-07-11 15:17:05 +02:00
// Copyright 2022 Stefan Kerkmann
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once
#if !defined(QMK_WAITING_TEST_BUSY_PIN)
# define QMK_WAITING_TEST_BUSY_PIN A8
#endif
#if !defined(QMK_WAITING_TEST_YIELD_PIN)
# define QMK_WAITING_TEST_YIELD_PIN A9
#endif
Reference in New Issue Copy Permalink
Powered by Gitea Version: 1.25.5 Page: 73ms Template: 1ms
English
Bahasa Indonesia Deutsch English Español Français Gaeilge Italiano Latviešu Magyar nyelv Nederlands Polski Português de Portugal Português do Brasil Suomi Svenska Türkçe Čeština Ελληνικά Български Русский Українська فارسی മലയാളം 日本語 简体中文 繁體中文(台灣) 繁體中文(香港) 한국어
Licenses API