Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-05-10 | tools: Move gendoc.py to tools, and make it a little more generic. | Damien George | |
2014-05-08 | tools: inline test suite generator. | Ilya Dmitrichenko | |
2014-05-08 | tools: check-in errordeveloper/tinytest@eb2dbc858f6c3785468a96e98f2b944f10013163 | Ilya Dmitrichenko | |
2014-05-04 | tools: In build-stm-latest, replace git hash with git tag. | Damien George | |
2014-05-03 | tools: pyboard.py now acts as a command-line program to run scripts. | Damien George | |
You can run a local script on the pyboard using: python pyboard.py test.py where test.py is the local script you want to run. | |||
2014-05-03 | stmhal: Change names: flash to firmware, flashboard to deploy. | Damien George | |
Since firmware lives in a build directory which already specifies the board name, no real reason to also have the firmware have the board name. | |||
2014-05-03 | Merge pull request #543 from lurch/patch-4 | Damien George | |
Make pyboard.enter_raw_repl more robust | |||
2014-05-03 | Merge pull request #547 from cjbarnes18/pyboard_module_fixes | Damien George | |
Fix pyboard.py tests. | |||
2014-05-02 | Fix pyboard.py tests. | Craig Barnes | |
2014-05-02 | Add shell script to automatically build stmhal/ for all pyboards. | Damien George | |
2014-05-01 | Make pyboard.enter_raw_repl more robust | Andrew Scheller | |
In case there's a program in the microcontroller's main.py running in an infinite loop | |||
2014-04-21 | tools: Update pyboard.py to work with latest changes to RTC. | Damien George | |
2014-04-16 | tools: Fix up pybcdc.inf generation: new lines and hex digits. | Damien George | |
Using Python's file open in 'r' mode opens it for text reading, which converts all new lines to \n. Could use 'rb' binary mode, but then don't have access to the string Template replacement functions. Thus, force the output to have '\\r\\n' ending. Also fix regex to match hex digits. | |||
2014-04-16 | Auto-generate the stmhal/pybcdc_inf header file from static files | Andrew Scheller | |
The USB VID&PID are automatically extracted from usbd_desc_cdc_msc.c and inserted into pybcdc_inf.template, ensuring that the same USB IDs get used everywhere | |||
2014-04-15 | pip-micropython: Fix inverted condition. | Paul Sokolovsky | |
2014-04-14 | pip-micropython: revert $HOME back to ~ | Andrew Scheller | |
2014-04-14 | Merge pull request #480 from lurch/patch-2 | Damien George | |
Make pip-micropython more portable | |||
2014-04-14 | Make pip-micropython more portable | Andrew Scheller | |
Replace /tmp with a $TMPDIR variable Replace multiple occurrences of /tmp/pip-micropy-venv with a $TMPVENV variable Replace ~ with $HOME | |||
2014-04-14 | tools: Improve timout/reading of pyboard.py. | Damien George | |
2014-04-13 | Make pyboard.py have its own exception; update run-tests for pyboard. | Damien George | |
2014-04-12 | pip-micropython: Apply more workarounds for setuptools, pip, etc misfeatures. | Paul Sokolovsky | |
2014-04-07 | pip-micropython: Require command verb, but restrict to "install" only. | Paul Sokolovsky | |
So, pip-micropython can/should be run as normal pip: pip-micropython install micropython-unittest | |||
2014-04-03 | tools: Improve reading back from pyboard. | Damien George | |
2014-04-03 | tools: pyboard.py can now execute a file remotely! | Damien George | |
2014-04-02 | tools: Add pip-micropython to install packages in MicroPython-friendly way. | Paul Sokolovsky | |
2014-03-24 | Add tools/pyboard.py, a simple module to communicate with the pyboard. | Damien George | |
Using pyboard.py you can use Python running on your PC to execute commands on the connected pyboard. See examples in that file. | |||
2014-01-03 | Change dfu.py to be Python 2/3 compatible | mux | |
* Chane dfu.py to use Python 3 syntax to avoid dependency on Python 2. * Update Makefile to call python instead of python2 * Fix #33 | |||
2013-12-20 | Add tools/dfu.py, and use it in stm/Makefile. | Damien | |