Skip to content
Snippets Groups Projects
  1. May 01, 2018
    • Ayke van Laethem's avatar
      py/stream: Use uPy errno instead of system's for non-blocking check. · d43c7377
      Ayke van Laethem authored
      This is a more consistent use of errno codes.  For example, it may be that
      a stream returns MP_EAGAIN but the mp_is_nonblocking_error() macro doesn't
      catch this value because it checks for EAGAIN instead (which may have a
      different value than MP_EAGAIN when MICROPY_USE_INTERNAL_ERRNO is enabled).
      d43c7377
    • Damien George's avatar
      py/mperrno: Define MP_EWOULDBLOCK as EWOULDBLOCK, not EAGAIN. · 96740be3
      Damien George authored
      Most modern systems have EWOULDBLOCK aliased to EAGAIN, ie they have the
      same value.  But some systems use different values for these errnos and if
      a uPy port is using the system errno values (ie not the internal uPy
      values) then it's important to be able to distinguish EWOULDBLOCK from
      EAGAIN.  Eg if a system call returned EWOULDBLOCK it must be possible to
      check for this return value, and this patch makes this now possible.
      96740be3
    • Mike Wadsten's avatar
      tests/io/bytesio_ext2: Remove dependency on specific EINVAL value · 9f1eafc3
      Mike Wadsten authored
      If MICROPY_USE_INTERNAL_ERRNO is disabled, MP_EINVAL is not guaranteed
      to have the value 22, so we cannot depend on OSError(22,).
      Instead, to support any given port's errno values, without relying
      on uerrno, we just check that the args[0] is positive.
      9f1eafc3
    • iabdalkader's avatar
      28c9824c
    • iabdalkader's avatar
      stm32/adc: Add support for H7 MCU series. · 8c12f1d9
      iabdalkader authored
      ADC3 is used because the H7's internal ADC channels are connected to ADC3
      and the uPy driver doesn't support more than one ADC.
      
      Only 12-bit resolution is supported because 12 is hard-coded and 14/16 bits
      are not recommended on some ADC3 pins (see errata).
      
      Values from internal ADC channels are known to give wrong values at
      present.
      8c12f1d9
  2. Apr 27, 2018
  3. Apr 26, 2018
  4. Apr 24, 2018
  5. Apr 23, 2018
  6. Apr 20, 2018
  7. Apr 11, 2018
Loading