Damien George
7c4445afe1
tools: Make gendoc.py able to output RST format.
2014-10-31 01:36:11 +00:00
Damien George
bc1488a05f
stmhal: Improve REPL control codes; improve pyboard.py script.
...
Improvements are:
2 ctrl-C's are now needed to truly kill running script on pyboard, so
make CDC interface allow multiple ctrl-C's through at once (ie sending
b'\x03\x03' to pyboard now counts as 2 ctrl-C's).
ctrl-C in friendly-repl can now stop multi-line input.
In raw-repl mode, use ctrl-D to indicate end of running script, and also
end of any error message. Thus, output of raw-repl is always at least 2
ctrl-D's and it's much easier to parse.
pyboard.py is now a bit faster, handles exceptions from pyboard better
(prints them and exits with exit code 1), prints out the pyboard output
while the script is running (instead of waiting till the end), and
allows to follow the output of a previous script when run with no
arguments.
2014-10-26 15:39:22 +00:00
Damien George
5fc42a6c97
tools, pydfu: Some fixes to support Python 3.
2014-10-22 20:27:43 +01:00
Dave Hylands
842210f53a
Add pydfu.py to the micropython tree. Use dfu_util bgy default
...
You can do:
make USE_PYDFU=1 deploy
to use pydfu.py
2014-10-22 20:18:38 +01:00
Damien George
9c9db3a7a1
tools, pyboard.py: Allow exec argument to be bytes or str.
2014-10-19 14:54:52 +01:00
blmorris
3b064370f8
Enable device keyword option when running pyboard.py --tests and run-tests --pyboard
2014-10-01 23:31:52 +01:00
Damien George
c737086e1c
tools: Add network build to auto-build script.
2014-09-30 23:04:08 +00:00
Damien George
2842945e76
stmhal: Fix bugs in documentation so it compiles.
2014-09-17 23:27:42 +00:00
Paul Sokolovsky
f3c3010ffc
pip-micropython: Revert to using PIP_MICROPY_DEST environment var.
...
-t/--target is a pip option. Trying to use pip options for different meanings
in pip-micropython may lead to big confusion. That's why the original passed
any extra parameters using environment variables. "All options belong to pip."
2014-08-27 02:53:06 +03:00
Damien George
db63660c19
Add pip-micropython to unix make install.
...
Also add -t/--target option to pip-micropython to allowing installing to
the pyboard.
Thanks to turbinenreiter/Sebastian Plamauer for the patch.
2014-08-26 16:03:57 +01:00
Damien George
c4ee39dd63
tools, gendoc: Output small descr about module TOC.
2014-08-10 16:51:26 +01:00
Damien George
590b2abdfc
tools, gendoc: Put module TOC/index in module/ directory.
2014-08-08 23:34:39 +01:00
Damien George
ef7a066c9c
tools, gendoc: Allow constants at module level; gen module index.
...
Addresses some issues from #585 .
2014-08-08 23:29:05 +01:00
Paul Sokolovsky
c10a4405cd
gendoc.py: Support modules w/o functions and/or classes.
...
I.e. don't assume that both are always present.
2014-06-29 15:48:30 +03:00
Damien George
3793830ed9
tools: Move gendoc.py to tools, and make it a little more generic.
2014-05-10 19:12:47 +01:00
Ilya Dmitrichenko
be86596bb9
tools: inline test suite generator.
2014-05-08 01:41:22 +03:00
Ilya Dmitrichenko
b1442e04d1
tools: check-in errordeveloper/tinytest@eb2dbc858f
2014-05-08 01:41:21 +03:00
Damien George
37936bebbf
tools: In build-stm-latest, replace git hash with git tag.
2014-05-04 00:11:09 +00:00
Damien George
3244123031
tools: pyboard.py now acts as a command-line program to run scripts.
...
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 18:14:34 +01:00
Damien George
aad1204b8e
stmhal: Change names: flash to firmware, flashboard to deploy.
...
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 17:46:45 +01:00
Damien George
e88814a274
Merge pull request #543 from lurch/patch-4
...
Make pyboard.enter_raw_repl more robust
2014-05-03 13:09:16 +01:00
Damien George
d9f4deef8c
Merge pull request #547 from cjbarnes18/pyboard_module_fixes
...
Fix pyboard.py tests.
2014-05-03 00:11:43 +01:00
Craig Barnes
71a1e35206
Fix pyboard.py tests.
2014-05-02 21:36:07 +01:00
Damien George
ba742ed639
Add shell script to automatically build stmhal/ for all pyboards.
2014-05-02 13:49:44 +00:00
Andrew Scheller
1f740bdaf4
Make pyboard.enter_raw_repl more robust
...
In case there's a program in the microcontroller's main.py running in an infinite loop
2014-05-01 20:42:23 +01:00