summaryrefslogtreecommitdiffstatshomepage
path: root/stmhal/lcd.c
Commit message (Collapse)AuthorAge
* stmhal: Replace #include "stm32f4xx_hal.h" with #include STM32_HAL_H.Dave Hylands2015-07-30
|
* stmhal: Make LCD initialiser use board pin names instead of cpu names.Damien George2015-04-18
|
* stmhal: Prefix includes with py/; remove need for -I../py.Damien George2015-01-01
|
* stmhal: Use mp_uint_t where appropriate.Damien George2014-10-05
| | | | | | Found these by compiling stmhal with mp_uint_t of type uint32_t instead of unsigned int. This actually makes a difference to the code, but just a curiosity.
* stmhal: For spi_init, add argument to select if NSS pin is enabled.Damien George2014-09-30
| | | | | Most of the time you don't use the NSS pin of the SPI bus, and so it shouldn't be enabled by default (this gave some bugs in the past).
* Change some parts of the core API to use mp_uint_t instead of uint/int.Damien George2014-08-30
| | | | Addressing issue #50, still some way to go yet.
* stmhal: Add documentation for LCD; update docs for USB_VCP.Damien George2014-08-02
|
* stmhal: Fix type signatures on functions that take variable args.Damien George2014-06-15
|
* stmhal: Update and improve LCD driver.Damien George2014-06-15
| | | | | Still some method names to iron out, and funtionality to add, but this will do for the first, basic version.
* Add license header to (almost) all files.Damien George2014-05-03
| | | | | | | Blanket wide to all .c and .h files. Some files originating from ST are difficult to deal with (license wise) so it was left out of those. Also merged modpyb.h, modos.h, modstm.h and modtime.h in stmhal/.
* unix,stmhal: Make "mpconfig.h" be first included, as other headers depend on it.Paul Sokolovsky2014-05-02
|
* Rename rt_* to mp_*.Damien George2014-03-30
| | | | | | | Mostly just a global search and replace. Except rt_is_true which becomes mp_obj_is_true. Still would like to tidy up some of the names, but this will do for now.
* stmhal: Unify naming of HW config; make SD detect configurable.Damien George2014-03-30
| | | | | | | | | All board config macros now begin with MICROPY_HW_. Renamed PYBv10 to PYBV10, since macros should be all uppercase. Made SDCARD_DETECT configurable in mpconfigport.h, so that the SD detect pin can be easily configured.
* stmhal: Add TODO's to exti.c; fix delay in lcd.c.Damien George2014-03-29
|
* stmhal: Improve LED intensity get/set method.Damien George2014-03-23
|
* stmhal: Add LCD driver.Damien George2014-03-19