diff options
| author | Dan Halbert <halbert@halwitz.org> | 2021-02-18 11:09:32 -0500 |
|---|---|---|
| committer | Dan Halbert <halbert@halwitz.org> | 2021-02-18 11:09:32 -0500 |
| commit | 5c37b73c6df1f7954a727401b17e7a1d31064d77 (patch) | |
| tree | 8b0cf01efef20bfbdacc37dcdaeb3a64eef1c35b | |
| parent | ed49c02feb7e206e962bf8a40cd69771b83e25cf (diff) | |
fix typo to fix nrf builds
| -rwxr-xr-x | ports/nrf/common-hal/supervisor/Runtime.c | 2 |
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(); } |
