Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | FSMC refactor; SRAM test code | Marti Bolivar | 2011-03-17 | 2 | -98/+326 |
| | |||||
* | Maple RET6 edition support | Marti Bolivar | 2011-03-16 | 1 | -5/+4 |
| | |||||
* | [WIP] GPIO refactor: seems ok, ready for review | Marti Bolivar | 2011-03-11 | 1 | -14/+14 |
| | |||||
* | Brought examples/ up to date; PIN_MAP bugfix for D24. | Marti Bolivar | 2011-03-04 | 13 | -313/+380 |
| | |||||
* | Cleaned out libmaple.h; this had wide-ranging implications. | Marti Bolivar | 2011-02-27 | 2 | -20/+21 |
| | | | | | | | | | | | | | | | | | | | 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 DAC | Perry Hung | 2011-02-27 | 1 | -3/+3 |
| | | | | | DAC header and source slightly cleaned up. Test on Maple Native prototype. Add flags parameter to allow selective enabling of channels. | ||||
* | Refactor backup (BKP) and power (PWR) routines. | Marti Bolivar | 2011-02-27 | 1 | -0/+78 |
| | |||||
* | workaround to compile test-session.cpp | Perry Hung | 2011-02-27 | 1 | -1/+1 |
| | |||||
* | Basic DAC functionality (high-density devices only). | Marti Bolivar | 2011-02-18 | 1 | -29/+21 |
| | |||||
* | Function examples/test-session.cpp on Native | Marti Bolivar | 2011-02-10 | 1 | -13/+19 |
| | |||||
* | Updated blinky.cpp for portability | Marti Bolivar | 2011-02-10 | 1 | -5/+7 |
| | |||||
* | Ported examples/test-session.cpp to work on Mini | Marti Bolivar | 2011-01-30 | 1 | -438/+515 |
| | |||||
* | systick testing and simplification | bnewbold | 2010-09-05 | 1 | -0/+60 |
| | | | | | | ripped out marti's SystemTick for the sake of simplicity and added a systick_resume function to libmaple. new example program demonstrates the functionality, also demonstrates micros()/USB bug | ||||
* | improved timer test program | bnewbold | 2010-09-05 | 1 | -0/+6 |
| | |||||
* | fixed Serial crash bug | bnewbold | 2010-09-05 | 1 | -1/+5 |
| | |||||
* | Various fixes, working with Maple | bnewbold | 2010-09-01 | 2 | -0/+172 |
|\ | |||||
| * | Merge maple-native changes into portable | bnewbold | 2010-08-31 | 2 | -50/+7 |
| |\ | | | | | | | | | | This compiles for both maple and maple_native but is untested. | ||||
| | * | simplified example headers | bnewbold | 2010-08-25 | 2 | -50/+7 |
| | | | |||||
| * | | FSMC tweaks | bnewbold | 2010-08-07 | 1 | -8/+2 |
| | | | |||||
| * | | basic working dac implementation | bnewbold | 2010-08-07 | 1 | -0/+53 |
| | | | |||||
| * | | Partially working! | bnewbold | 2010-08-05 | 1 | -52/+28 |
| | | | | | | | | | | | | | | | Documented; see ./notes/fsmc.txt. Not yet integrated into .ld scripts or fully tested | ||||
| * | | partial progress on FSMC for SRAM | bnewbold | 2010-08-05 | 1 | -0/+149 |
| |/ | |||||
* | | added support to enable/disable systick in wirish | Marti Bolivar | 2010-08-31 | 1 | -3/+1 |
| | | |||||
* | | simplified example headers | bnewbold | 2010-08-31 | 2 | -50/+7 |
|/ | |||||
* | updated leaf demo | bnewbold | 2010-07-20 | 1 | -62/+116 |
| | |||||
* | test of serialN.flush() | bnewbold | 2010-07-20 | 1 | -0/+45 |
| | |||||
* | updated vga demos to use SerialUSB.end() | bnewbold | 2010-07-20 | 2 | -0/+9 |
| | |||||
* | TMP: test updates | bnewbold | 2010-07-20 | 2 | -3/+12 |
| | |||||
* | wirish implementation of timers plus test | bnewbold | 2010-07-20 | 1 | -3/+133 |
| | |||||
* | timers progress | bnewbold | 2010-07-20 | 3 | -259/+50 |
| | | | | examples code cleanup, more descriptive comments, more notes | ||||
* | awesome vga demos, need vga+systick disabled | bnewbold | 2010-07-20 | 2 | -0/+167 |
| | |||||
* | good quality vga leaf logo; usb+systick disabled | bnewbold | 2010-07-20 | 2 | -0/+436 |
| | | | | | refactored timers and added interrupt behavior. see notes and comments... also includes a crude vga hack that doesn't use timers. | ||||
* | working serialUSB with timeout | bnewbold | 2010-07-19 | 1 | -0/+135 |
| | | | | | | | | | | | as a temporary workaround for the fact that SerialUSB is often blocking, this crude implementation makes the low-level C usbSendBytes function non-blocking (with a return code of bytes sent) and implements a 2ms timeout in the wirish write() function. also adds begin(), end(), getDTR(), getRTS(), pending(). device is still initialized the old fashioned way during init() so that, eg, autoreset will work. includes a simple multi-test program. | ||||
* | Call init() before static constructors | Perry Hung | 2010-06-25 | 5 | -14/+44 |
| | | | | | | | Commit 70a18f96b6d55d23ce58ab40ffb61f172c8f6c73 forces init() to be called before any statically allocated object constructors for the IDE. This adds the change to the examples for users not using the IDE. | ||||
* | fixed QA test (pulldown) | bnewbold | 2010-06-16 | 1 | -2/+2 |
| | |||||
* | new QA testing modes | bnewbold | 2010-06-15 | 2 | -0/+92 |
| | |||||
* | helpful debug program | bnewbold | 2010-06-11 | 1 | -0/+42 |
| | |||||
* | test session serial fix | bnewbold | 2010-06-07 | 1 | -3/+3 |
| | |||||
* | fixed example | bnewbold | 2010-06-05 | 1 | -5/+5 |
| | |||||
* | example updates... | bnewbold | 2010-06-04 | 1 | -523/+524 |
| | |||||
* | Preliminary wirish USBSerial implementation. | Perry Hung | 2010-06-04 | 2 | -7/+0 |
| | | | | | | -updated examples -removed HardwareUSB -cleaned up a handful of includes | ||||
* | finish cxxabi-compat refactor | bnewbold | 2010-04-29 | 1 | -7/+0 |
| | | | | perry forgot to add/edit these... | ||||
* | Fixed examples, added spi example, moved pure virtual function handler | Perry Hung | 2010-04-29 | 2 | -20/+73 |
| | | | | out of main to cxxabi-compat.cpp. | ||||
* | updated test-session with new banner art etc | bnewbold | 2010-04-27 | 1 | -64/+163 |
| | |||||
* | mostly complete new interactive hardware testing program | bnewbold | 2010-04-21 | 1 | -0/+437 |
| | |||||
* | Licensing: Relicensed libmaple under the MIT License. | Perry Hung | 2010-03-31 | 1 | -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. | ||||
* | Major hierarchy reorganization; see README. | bnewbold | 2010-03-31 | 1 | -0/+66 |
copy-to-ide and Makefile updated to conform; .gitignore added; LICENSE added |