- Apr 25, 2014
-
-
Damien George authored
-
- Apr 24, 2014
-
-
Damien George authored
Qemu
-
Damien George authored
-
Damien George authored
-
Damien George authored
objexcept: Don't store args tuple within exception object.
-
Damien George authored
vm: Add rudimentary bytecode execution tracing capability.
-
- Apr 23, 2014
-
-
Paul Sokolovsky authored
To help with debugging issue like #510 for example.
-
Paul Sokolovsky authored
Suggested by @lurch.
-
Paul Sokolovsky authored
To avoid pointer-to-field GC problem.
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
- Apr 21, 2014
-
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
Some BSD socket functions don't return error numbers in errno namespace, but rather in other error namespaces. CPython resolves this by using OSError subclasses for them. We don't do that so far, so there's ambiguity here.
-
Paul Sokolovsky authored
Well, Python3 also defines an attribute for that, but that's bloat.
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
Exact behavior of typecodes may be not yet enforced.
-
Ilya Dmitrichenko authored
-
Ilya Dmitrichenko authored
-
Ilya Dmitrichenko authored
-
Ilya Dmitrichenko authored
Switch from CodeSourcery to ARM GCC and clean-up some stale files, also copy `main.c` and `mpconfigport.h` from bare-arm.
-
Ilya Dmitrichenko authored
-
Damien George authored
-
Damien George authored
-
Damien George authored
-
Damien George authored
-
Damien George authored
-
Damien George authored
-
Damien George authored
Instead of pyb.switch() as a function, it's more consistent (with respect to all the other modules and peripherals) to have pyb.Switch() create a switch object. This then generalises to having multiple switches. Call the object to get its state. Use sw.callback to set the callback function for when the switch is pressed.
-
Damien George authored
It should be a noun, since it supports getting and setting depending on the number of arguments given.
-
Damien George authored
-
Damien George authored
Simple but functional timer control. More sophistication will eventually be added, or for now just use direct register access :) Also added pyb.freq() function to get MCU clock frequencies.
-
Damien George authored
-
Damien George authored
-
Damien George authored
-
Damien George authored
It's really a UART because there is no external clock line (and hence no synchronous ability, at least in the implementation of this module). USART should be reserved for a module that has "S"ynchronous capabilities. Also, UART is shorter and easier to type :)
-
Damien George authored
This is a one-liner fix. It gets the class-super.py test passing, but is probably not a complete fix.
-
Damien George authored
-