aboutsummaryrefslogtreecommitdiffstats
path: root/libmaple/adc.h
Commit message (Collapse)AuthorAgeFilesLines
* Doxygen bugfixes.Marti Bolivar2011-04-121-0/+1
| | | | Fixed various Doxygen comment errors.
* Final stm32_pin_info design candidate; ADC3 support on Native.Marti Bolivar2011-03-251-74/+220
| | | | | | | | | | | | | | | | | | | | Added an adc_dev to struct stm32_pin_info. This was necessary to add support for the channels on the Native which are only connected to ADC3, but it does add a bunch of NULLs to the PIN_MAPs. I don't think any other peripherals need representation on a per-pin basis. Each peripheral library will be responsible for keeping track of related GPIO ports and bits, and we can throw #defines in to boards/*.h for other things (e.g. BOARD_SPI1_MISO_PIN). Fleshed out the ADC refactor and brought it more in keeping with the new design as it evolves. A couple of other tweaks. Notably: waitForButtonPress() now takes a default argument meaning "wait forever". Removed Maple-specific documentation from core functions in io.h; this information will need to go into the individual board docs files.
* Fix compiler errors after reverting broken commit.Perry Hung2011-03-211-3/+3
|
* Revert "RCC refactor, bugfixes"Perry Hung2011-03-211-3/+3
| | | | This reverts commit e4807a5010f59ab863ad2c96dc14caf65bf1ae60.
* RCC refactor, bugfixesMarti Bolivar2011-03-121-3/+3
|
* [WIP] GPIO refactor: seems ok, ready for reviewMarti Bolivar2011-03-111-14/+24
|
* Cleaned out libmaple.h; this had wide-ranging implications.Marti Bolivar2011-02-271-2/+2
| | | | | | | | | | | | | | | | | | | Many of the #defines in libmaple.h were board-specific, not MCU-specific. Most of these were only used by code under libmaple/usb/. These were moved into usb_config.h, and are clearly marked as being terrible hacks. I'm going to treat the USB stack as a black box that we'll deal with later. Further, instead of having a variety of #defines like "How many USARTS do I have?", we decide that based on the density of the chip. This is determined by testing for STM32_MEDIUM_DENSITY or STM32_HIGH_DENSITY defines. libmaple currently doesn't support low-density chips, so that suffices. The Makefile will set these automatically based on the MCU. Other offending #defines are ERROR_LED_PORT and ERROR_LED_PIN; these were made optional, but they're set in the Makefile as a hack to keep things working.
* Refactor ADC: Pass device pointer instead of register mapPerry Hung2011-02-271-14/+20
|
* libmaple: Refactor ADC routinesPerry Hung2011-02-271-56/+137
| | | | | | ADC routines rewritten, support for ADC2, 3, added. Signed-off-by: Marti Bolivar <mbolivar@leaflabs.com>
* Generalizing adc_init() to allow user to select sample timeMarti Bolivar2011-02-171-2/+18
|
* Merge branch 'nzmichaelh-master' into master.Marti Bolivar2011-02-161-3/+4
|\ | | | | | | | | | | | | | | | | This provides DMA, IWDG, PWR, and BKP support, and fixes several bugs. Conflicts: libmaple/adc.h libmaple/libmaple.h libmaple/ring_buffer.h
| * nzmichaelh-master branch is ready for code review.Marti Bolivar2010-12-301-3/+4
| |
* | maple mini runs blinky now.Marti Bolivar2010-10-221-5/+6
| | | | | | | | still need usb descriptors to improve, and also nothing else is tested.
* | more docsMarti Bolivar2010-10-111-1/+1
|/
* whitespace cleanupsMarti Bolivar2010-09-271-9/+8
|
* inital portability workbnewbold2010-08-251-18/+19
|
* after change of pin numbering scheme, NR_ANALOG_PINS doesn't make sense any morebnewbold2010-04-211-1/+1
|
* Licensing: Relicensed libmaple under the MIT License.Perry Hung2010-03-311-12/+17
| | | | | | Relicensed the bulk of libmaple under the more permissive MIT License, from GPLv3. Files that were largely or entirely derived from the Arduino, STM, or Lanchon retain their original licenses.
* Removed inttypes.hPerry Hung2010-03-311-14/+13
| | | | | Removed inttypes.h from libmaple. Will have another pass through to use the standard libmaple types, but will come in another commit.
* Major hierarchy reorganization; see README.bnewbold2010-03-311-0/+93
copy-to-ide and Makefile updated to conform; .gitignore added; LICENSE added