1. 05 Apr, 2016 1 commit
  2. 04 Apr, 2016 4 commits
  3. 03 Apr, 2016 8 commits
  4. 02 Apr, 2016 13 commits
  5. 01 Apr, 2016 11 commits
  6. 31 Mar, 2016 2 commits
    • Damien George's avatar
      esp8266: Reset term_obj on reboot. · 4b597a1c
      Damien George authored
      Also, term_obj can be NULL if socket enables REPL duplication signalling
      before os.dupterm is called, so it should be checked.
      4b597a1c
    • Paul Sokolovsky's avatar
      esp8266: Implement input part of dupterm handling. · 98af8916
      Paul Sokolovsky authored
      The idea is following: underlying interrupt-driven or push-style data source
      signals that more data is available for dupterm processing via call to
      mp_hal_signal_dupterm_input(). This triggers a task which pumps data between
      actual dupterm object (which may perform additional processing on data from
      low-level data source) and input ring buffer.
      98af8916
  7. 30 Mar, 2016 1 commit
    • Paul Sokolovsky's avatar
      esp8266: Switch back to accumulating input data via ring buffer. · 61fa7c81
      Paul Sokolovsky authored
      But now it's generic ring buffer implemented via ringbuf.h, and is intended
      for any type of input, including dupterm's, not just UART. The general
      process work like this: an interrupt-driven input source puts data into
      input_buf, and then signals new data available via call to
      mp_hal_signal_input().
      61fa7c81