diff options
| author | Jeff Epler <jepler@gmail.com> | 2021-02-26 09:56:35 -0600 |
|---|---|---|
| committer | Jeff Epler <jepler@gmail.com> | 2021-02-26 09:56:35 -0600 |
| commit | 1d1ff5f308f17f005422736f99a2f512775cee50 (patch) | |
| tree | fc182add0f6438f1592084a0b224d86f09fb7d5b /ports/nrf/common-hal | |
| parent | ff1942cff68a4e192f984a14a83b59800186e45a (diff) | |
| parent | 5158aec8c190757df000388a05b6006bd32629a7 (diff) | |
Merge remote-tracking branch 'origin/main' into update-protomatter-rp2
Diffstat (limited to 'ports/nrf/common-hal')
| -rwxr-xr-x | ports/nrf/common-hal/supervisor/Runtime.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ports/nrf/common-hal/supervisor/Runtime.c b/ports/nrf/common-hal/supervisor/Runtime.c index ea663f897..a24e86cdf 100755 --- a/ports/nrf/common-hal/supervisor/Runtime.c +++ b/ports/nrf/common-hal/supervisor/Runtime.c @@ -28,10 +28,10 @@ #include "shared-bindings/supervisor/Runtime.h" #include "supervisor/serial.h" -bool common_hal_get_serial_connected(void) { +bool common_hal_supervisor_runtime_get_serial_connected(void) { return (bool) serial_connected(); } -bool common_hal_get_serial_bytes_available(void) { +bool common_hal_supervisor_runtime_get_serial_bytes_available(void) { return (bool) serial_bytes_available(); } |
