Skip to content
Snippets Groups Projects
  1. Jun 04, 2015
  2. Jun 03, 2015
  3. Jun 02, 2015
  4. Jun 01, 2015
    • Paul Sokolovsky's avatar
      tools: Add upip 0.5.2 tarball. · 0df20da4
      Paul Sokolovsky authored
      So unix version, which now includes upip as a frozen module, can be built
      without Internet connection.
      0df20da4
    • Paul Sokolovsky's avatar
      unix: Include upip as fronzen modules inside the standard interpreter. · 9456732b
      Paul Sokolovsky authored
      MicroPython doesn't come with standard library included, so it is important
      to be able to easily install needed package in a seamless manner. Bundling
      package manager (upip) inside an executable solves this issue.
      
      upip is bundled only with standard executable, not "minimal" or "fast"
      builds.
      9456732b
    • Paul Sokolovsky's avatar
      esp8266: Fix lost chars problem when block-xfering data (e.g., when pasting). · 2fc1e643
      Paul Sokolovsky authored
      Pasting more or less sizable text into ESP8266 REPL leads to random chars
      missing in the received input. Apparent cause is that using RTOS messages
      to pass individual chars one by one is to slow and leads to UART FIFO
      overflow. So, instead of passing chars one by one, use RTOS msg to signal
      that input data is available in FIFO, and then let task handler to read
      data directly from FIFO.
      
      With this change, lost chars problem is gone, but the pasted text is
      truncated after some position. At least 500 chars can be pasted reliably
      (at 115200 baud), but 1K never pastes completely.
      2fc1e643
  5. May 31, 2015
  6. May 30, 2015
  7. May 29, 2015
Loading