summaryrefslogtreecommitdiff
path: root/ports/nrf
diff options
context:
space:
mode:
authorDan Halbert <halbert@halwitz.org>2021-02-18 11:09:32 -0500
committerDan Halbert <halbert@halwitz.org>2021-02-18 11:09:32 -0500
commit5c37b73c6df1f7954a727401b17e7a1d31064d77 (patch)
tree8b0cf01efef20bfbdacc37dcdaeb3a64eef1c35b /ports/nrf
parented49c02feb7e206e962bf8a40cd69771b83e25cf (diff)
fix typo to fix nrf builds
Diffstat (limited to 'ports/nrf')
-rwxr-xr-xports/nrf/common-hal/supervisor/Runtime.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ports/nrf/common-hal/supervisor/Runtime.c b/ports/nrf/common-hal/supervisor/Runtime.c
index def609cda..a24e86cdf 100755
--- a/ports/nrf/common-hal/supervisor/Runtime.c
+++ b/ports/nrf/common-hal/supervisor/Runtime.c
@@ -32,6 +32,6 @@ bool common_hal_supervisor_runtime_get_serial_connected(void) {
return (bool) serial_connected();
}
-bool common_hal_get_supervisor_runtime_serial_bytes_available(void) {
+bool common_hal_supervisor_runtime_get_serial_bytes_available(void) {
return (bool) serial_bytes_available();
}