Skip to content
Snippets Groups Projects
  1. May 09, 2016
    • Damien George's avatar
      py/mpz: Fix mpn_div so that it doesn't modify memory of denominator. · 460b0863
      Damien George authored
      Previous to this patch bignum division and modulo would temporarily
      modify the RHS argument to the operation (eg x/y would modify y), but on
      return the RHS would be restored to its original value.  This is not
      allowed because arguments to binary operations are const, and in
      particular might live in ROM.  The modification was to normalise the arg
      (and then unnormalise before returning), and this patch makes it so the
      normalisation is done on the fly and the arg is now accessed as read-only.
      
      This change doesn't increase the order complexity of the operation, and
      actually reduces code size.
      460b0863
    • Paul Sokolovsky's avatar
      esp8266/main: Bump heap size to 28K. · de5e0ed2
      Paul Sokolovsky authored
      This is kind of compensation for 4K FatFs buffer size which is eaten away
      from it on FS mount. This should still leave enough of networking ("OS")
      heap.
      de5e0ed2
  2. May 08, 2016
  3. May 07, 2016
  4. May 06, 2016
  5. May 05, 2016
  6. May 04, 2016
  7. May 03, 2016
Loading