Damien George
b89ac9db78
stmhal/moduos: Implement total-number-of-blocks field in statvfs.
2016-10-05 15:52:36 +11:00
Damien George
b1537a5752
stmhal/mphalport: Change pin obj type to const pointer, to avoid casts.
2016-10-05 15:51:40 +11:00
puuu
bcf60b43ee
esp8266/modpybrtc.c: Implement machine.RTC.alarm_left()
...
Implementation of machine.RTC.alarm_left(), like described in the
documentation.
2016-10-05 12:20:30 +11:00
Dave Hylands
7a9c183c20
stmhal: Fix ESPRUINO_PICO by adding ld scripts with correct flash size.
2016-10-05 11:42:50 +11:00
Paul Sokolovsky
cecf6bee97
tools: Upgrade upip to 1.0.
...
Fully self-hosted release (without fallbacks), and uses stream gzip
decompression (step towards support for limited-heap baremetal systems).
2016-10-05 00:34:09 +03:00
Paul Sokolovsky
161e9f4115
esp8266/main: Put /lib before / in sys.path.
...
upip will use first non-empty component in sys.path as an install path
(if MICROPYPATH envvar is not set, like it will be for baremetal targets).
2016-10-05 00:02:51 +03:00
Paul Sokolovsky
52784bf595
esp8266/modmachine: idle(): Return number of CPU cycles spent idling.
...
Useful to better understand esp8266 inner workings and compare behavior
in different cases.
2016-10-04 21:20:47 +03:00
Alex March
addd1d3db1
tests/extmod/btree1: Checks for put, seq, string print and unsupported binary op.
2016-10-05 00:17:22 +11:00
Pavol Rusnak
99d62c4def
stmhal/usb: Use real packet size (not maximum) in HID receive.
2016-10-04 15:39:31 +11:00
Pavol Rusnak
8f3cf6e6a8
stmhal/usb: Use correct ClassData structure for HID receive.
2016-10-04 15:38:32 +11:00
Philip Potter
eb239b8398
stmhal/usb: Add support to receive USB HID messages from host.
2016-10-04 15:38:01 +11:00
Philip Potter
03de5a13cf
stmhal/usbdev: Add OUT endpoint to HID interface.
2016-10-04 15:20:11 +11:00
Damien George
cd20027f56
tests/run-tests: Disable cmdline/cmd_showbc test on Windows.
...
Disabled until a proper fix is found.
2016-10-04 14:42:51 +11:00
Dave Hylands
1f433c719b
stmhal: Fix linker map for STM32L476 chips.
...
In particular, this makes the L4 .isr_vector section 16K in size so it's
the same as the F4/F7 MCUs. The patch also moves the L4 filesystem to
the end of flash, which allows for 512K filesystem on the 1Mb devices
like the STM32L476DISC.
2016-10-04 14:31:19 +11:00
Damien George
bd925b59c3
stmhal/spi: Enable use of fast software SPI.
2016-10-04 13:51:30 +11:00
Damien George
b0eb0d6153
extmod/machine_spi: Add optional support for fast software SPI.
...
If a port defines MICROPY_PY_MACHINE_SPI_MIN_DELAY then it can use a
faster software SPI loop that does not make calls to the delay_us
function.
2016-10-04 13:46:40 +11:00
Damien George
b932b2dd1f
extmod/machine_spi: Use delay_half, not baudrate, for internal timing.
...
The delay_half parameter must be specified by the port to set up the
timing of the software SPI. This allows the port to adjust the timing
value to better suit its timing characteristics, as well as provide a
more accurate printing of the baudrate.
2016-10-04 13:43:02 +11:00
Damien George
9f1e395c16
stmhal/spi: Use software SPI if no periph id given, even if pins given.
...
It's simpler to just default to always using software SPI if no specific
peripheral id/name is given. To use hardware SPI users must specify a
hardware peripheral id as the first parameter to the SPI constructor.
2016-10-04 13:38:11 +11:00
Damien George
bd87375202
esp8266/moduos: Move stat/statvfs funcs to sit within #if VFS guard.
2016-10-03 21:48:32 +11:00
Damien George
5deedd6685
stmhal/mphalport: Fix mp_hal_pin_write to use correct pin_mask.
2016-10-03 18:06:58 +11:00
Damien George
d4a5ca5056
stmhal/spi: Make machine.SPI class conform to correct API.
...
Includes both software and hardware SPI implementations.
2016-10-03 17:12:43 +11:00
Damien George
077dbf4a86
stmhal/mphalport: Implement mp_hal_pin_{input,output,write}.
2016-10-03 16:44:34 +11:00
Damien George
d434ce3fca
extmod/machine_spi: Factor out software SPI code from esp8266 to extmod.
2016-10-03 16:43:44 +11:00
Damien George
a22a67661a
stmhal/spi: Simplify spi_transfer function to take only one buf len arg.
2016-10-03 12:47:56 +11:00
Damien George
5bb28c7f10
extmod/machine_spi: Simplify SPI xfer function to only take one buf len.
...
There is no need to take src_len and dest_len arguments. The case of
reading-only with a single output byte (originally src_len=1, dest_len>1)
is now handled by using the output buffer as the input buffer, and using
memset to fill the output byte into this buffer. This simplifies the
implementations of the spi_transfer protocol function.
2016-10-03 12:39:31 +11:00