summaryrefslogtreecommitdiffstatshomepage
path: root/docs/library
Commit message (Collapse)AuthorAge
* stmhal: Add support for sending and receiving CAN RTR messages.Henrik2015-04-18
|
* stmhal: Allow sending CAN messages with timeout=0.Damien George2015-04-16
| | | | Thanks to Henrik Sölver for this patch.
* docs: Document pyb.main function to set main script.Damien George2015-04-09
|
* docs: uctypes: Bullet list formatting fixes.Paul Sokolovsky2015-03-31
|
* docs: uctypes: Describe how to instantiate struct objects.Paul Sokolovsky2015-03-31
|
* docs: Add additional example/note for Timer's callback usage.Ivan Pejić2015-03-30
| | | | | Add example: using named function for the Timer's callback. Add note: improving traceback inside interrupt timers.
* docs: Provide initial documentation for micropython module.Damien George2015-03-30
|
* docs: uctypes: Describe bytes_at(), bytearray_at().Paul Sokolovsky2015-03-27
|
* docs: uctypes: Describe couple more functions.Paul Sokolovsky2015-03-24
|
* stmhal: Add support for quadrature encoder mode to pyb.TimerChannel.Dave Hylands2015-03-09
|
* docs: Update pyb.Timer.rst to fix pulse widths that exceed the period.Peter Hinch2015-03-09
|
* docs: Correct the documentation for math.frexp.Damien George2015-02-23
|
* pyb.UART.rst: Clean up note about stream protocol support.Paul Sokolovsky2015-02-22
|
* stmhal: For UART, check that baudrate is within 5% of desired value.Damien George2015-02-22
| | | | | | Also includes documentation about minimum baudrate. Addresses issue #1090.
* stmhal: Add support for CAN rx callbacks.Henrik Sölver2015-02-15
|
* stmhal: Add uart.sendbreak() method, to send a break condition.Damien George2015-02-13
|
* stmhal: Add Python-configurable USB HID mode.Damien George2015-02-13
| | | | | Different HID modes can be configured in Python. You can either use predefined mouse or keyboard, or write your own report descriptor.
* docs: Fix frequency info for DAC.triangle.Damien George2015-01-20
|
* docs: Add note about maximum frequency of busses.Damien George2015-01-08
|
* docs: Add initial "uctypes" modules docs. WIP.Paul Sokolovsky2015-01-08
|
* docs: Add quickref info about Servo; improve Servo docs.Damien George2015-01-01
|
* stmhal: Add ability to mount custom block device.Damien George2014-12-27
|
* docs: Make admonition for CPy-difference use "attention" class.Damien George2014-12-22
| | | | This renders it in yellow/orange box on RTD server.
* docs: Add CPy diff note for print_exception; embellish sys.platform.Damien George2014-12-19
|
* docs: Define more clearly the behaviour of LED methods.Damien George2014-12-16
| | | | Addresses issue #1006.
* docs: Add sys.print_exception().Paul Sokolovsky2014-12-10
|
* stmhal: Allow SPI.init to specify prescaler directly; improve SPI docs.Damien George2014-12-08
|
* stmhal: Enhance pyb.freq to configure bus (AHB, APB1, APB2) freqs.Damien George2014-12-08
| | | | | This is useful if you need precise control over the speed of peripherals (eg SPI clock).
* docs: uzlib: Typo fix.Paul Sokolovsky2014-12-05
|
* docs: Add quick docs for uzlib.Paul Sokolovsky2014-12-05
|
* docs: Update network docs to reflect changes to code.Damien George2014-12-04
|
* docs: Add skeleton docs for ure module.Paul Sokolovsky2014-12-04
|
* docs: Add quick docs for ubinascii.Paul Sokolovsky2014-12-02
|
* docs: Add quick docs for uhashlib.Paul Sokolovsky2014-12-02
|
* docs: Sort "micro-library" module list alphabetically.Paul Sokolovsky2014-12-01
|
* Update documentation for the CAN classHenrik Sölver2014-11-30
|
* stmhal: Add USB_VCP.setinterrupt method, to disable CTRL-C.Damien George2014-11-29
|
* Update uheapq.rstinaugurator2014-11-28
| | | Erratum in froh.
* stmhal: Improve CAN init so that it can take sjw, bs1, bs2 args.Damien George2014-11-15
| | | | Also update docs to explain how CAN baudrate is determined.
* Document parameter "data" of i2c.mem_read() more clearMatthias2014-11-15
| | | | | | | | | | | | | | | | Hi, i would like to add a little clarification to the parameter "data" of i2c.mem_read(): I misunderstood ``data`` can be an integer or a buffer to read into as "i can give a integer variable to read a integer into" . This pull-request adds the following clarification: ``data`` can be an integer (number of bytes to read) or a buffer to read into Thanks for your great work! Best wishes, Matthias
* docs: select: Describe extra details.Paul Sokolovsky2014-11-09
|
* docs: Add links from quickref to pyb classes.Damien George2014-11-04
|
* docs: Add debounce tutorial; order Pin methods; add pull resistor info.Damien George2014-11-04
|
* docs: Make custom index page; add more docs.Damien George2014-11-02
|
* stmhal: Improve pyb.freq to allow 8 and 16MHz (not usable with USB).Damien George2014-11-02
| | | | | | | | Also restrict higher frequencies to have a VCO_OUT frequency below 432MHz, as specified in the datasheet. Docs improved to list allowed frequencies, and explain about USB stability.
* docs: Cleanup and update some docs.Damien George2014-10-31
|
* py: Make gc.enable/disable just control auto-GC; alloc is still allowed.Damien George2014-10-31
| | | | | | gc.enable/disable are now the same as CPython: they just control whether automatic garbage collection is enabled or not. If disabled, you can still allocate heap memory, and initiate a manual collection.
* stmhal: Fix UART so bits counts number of data bits, not incl parity.Damien George2014-10-31
| | | | Addresses issue #950.
* docs: Import documentation from source-code inline comments.Damien George2014-10-31
The inline docs (prefixed with /// in .c files) have been converted to RST format and put in the docs subdirectory.