diff options
| author | Hierophect <hierophect@gmail.com> | 2019-06-28 19:22:23 -0400 |
|---|---|---|
| committer | Hierophect <hierophect@gmail.com> | 2019-06-28 19:22:23 -0400 |
| commit | 94a2eff05c410ee6a111efa0c48abd78b3518092 (patch) | |
| tree | 936a0c8335d3f67465e2f2fdd092f297b92903a9 /supervisor/shared/micropython.c | |
| parent | 04a9bc0d352e76d65d50178e6f7a364511bf75b9 (diff) | |
remove build, fix link issues)
Diffstat (limited to 'supervisor/shared/micropython.c')
| -rw-r--r-- | supervisor/shared/micropython.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/supervisor/shared/micropython.c b/supervisor/shared/micropython.c index 245db11d4..db9864793 100644 --- a/supervisor/shared/micropython.c +++ b/supervisor/shared/micropython.c @@ -30,7 +30,7 @@ #include "lib/oofatfs/ff.h" #include "py/mpconfig.h" -#include "supervisor/shared/status_leds.h" +//#include "supervisor/shared/status_leds.h" int mp_hal_stdin_rx_chr(void) { for (;;) { @@ -38,14 +38,14 @@ int mp_hal_stdin_rx_chr(void) { MICROPY_VM_HOOK_LOOP #endif if (serial_bytes_available()) { - toggle_rx_led(); + //toggle_rx_led(); return serial_read(); } } } void mp_hal_stdout_tx_strn(const char *str, size_t len) { - toggle_tx_led(); + //toggle_tx_led(); #ifdef CIRCUITPY_BOOT_OUTPUT_FILE if (boot_output_file != NULL) { |
