aboutsummaryrefslogtreecommitdiffstats
path: root/examples
Commit message (Collapse)AuthorAgeFilesLines
* Reverting commits between `git merge-head master refactor` and master.Marti Bolivar2011-05-0914-694/+459
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is a combination of 11 revert commits, and allows for a clean merge of the work done in the refactor branch. The combined commit messages follow. Revert "Committing basic ring_buffer test." This reverts commit 987fa5f433e0cd41b1621dad8b4e331cf82d49f3. Revert "qa-slave-shield.cpp and test-session.cpp fixes for Mini and RET6 Edition." This reverts commit cdd367bdd264c9e19180032c119850fbba2115ba. Revert "Brought examples/ up to date; PIN_MAP bugfix for D24." This reverts commit b4c2d4514c6d52cac8a649c5d5c24b68a3c0a416. Revert "Separated GPIO config to a separate FSMC routine." This reverts commit 744848ad0fc33eed66acc44e41c3c9d646c5b100. Revert "Slightly faster RAM writes (6.5MHz)." This reverts commit 8ba0b6bb065acb4aff26bc9c838de5f37515caf1. Revert "FSMC working but slow (~6 MHz)." This reverts commit 0dc9490cf4f4f10a23b08fef1728773f10c1b76a. Revert "Maple Mini ERROR_LED_PIN fix." This reverts commit 07d437706840901db1e09ff0ab88229c67c1fa8a. Revert "Fixing USBSerial::read(void*, uint32) return value (thanks, Crenn!)" This reverts commit 3ba7196712a5bfe4fe1166b6c34d49c3d7254568. Revert "Trivial gpio_init() bugfix" This reverts commit f6ce003bb935f26eeefa54acf7c2ae6afaabd871. Revert "Trivial changes to test-session.cpp" This reverts commit a32a37b121ac7e62660d2a83fe67c857fe705122. Revert ".gitignore: Ignore cscope* files" This reverts commit d8c72c17bd6d7416a0846e69f4f5ae5cb229d58e.
* Committing basic ring_buffer test.Marti Bolivar2011-04-041-0/+114
|
* qa-slave-shield.cpp and test-session.cpp fixes for Mini and RET6 Edition.Marti Bolivar2011-03-082-3/+13
| | | | | | | | | | | | | There's a bit of a hack on the RET6 NR_DAC_PINS: due to the fact that PA5 is hooked up to the built-in LED and DAC channel 2, I set NR_DAC_PINS to 0 for the STM32F103RE (in libmaple.h), so that init() doesn't dac_init() and mess with the LED. Not too worried about it since this is just a beta board, but we'll need to fix this in the design for the real version. Also, BUT should be moved, since it steals Timer 8's channel 4 CC connection.
* Brought examples/ up to date; PIN_MAP bugfix for D24.Marti Bolivar2011-03-0812-354/+473
| | | | (Cherry-pick from refactor with some modifications).
* Slightly faster RAM writes (6.5MHz).Marti Bolivar2011-03-071-0/+2
|
* FSMC working but slow (~6 MHz).Marti Bolivar2011-03-071-105/+95
|
* Trivial changes to test-session.cppMarti Bolivar2011-03-011-6/+6
|
* Basic DAC functionality (high-density devices only).Marti Bolivar2011-02-181-29/+21
|
* Function examples/test-session.cpp on NativeMarti Bolivar2011-02-101-13/+19
|
* Updated blinky.cpp for portabilityMarti Bolivar2011-02-101-5/+7
|
* Ported examples/test-session.cpp to work on MiniMarti Bolivar2011-01-301-438/+515
|
* systick testing and simplificationbnewbold2010-09-051-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 programbnewbold2010-09-051-0/+6
|
* fixed Serial crash bugbnewbold2010-09-051-1/+5
|
* Various fixes, working with Maplebnewbold2010-09-012-0/+172
|\
| * Merge maple-native changes into portablebnewbold2010-08-312-50/+7
| |\ | | | | | | | | | This compiles for both maple and maple_native but is untested.
| | * simplified example headersbnewbold2010-08-252-50/+7
| | |
| * | FSMC tweaksbnewbold2010-08-071-8/+2
| | |
| * | basic working dac implementationbnewbold2010-08-071-0/+53
| | |
| * | Partially working!bnewbold2010-08-051-52/+28
| | | | | | | | | | | | | | | Documented; see ./notes/fsmc.txt. Not yet integrated into .ld scripts or fully tested
| * | partial progress on FSMC for SRAMbnewbold2010-08-051-0/+149
| |/
* | added support to enable/disable systick in wirishMarti Bolivar2010-08-311-3/+1
| |
* | simplified example headersbnewbold2010-08-312-50/+7
|/
* updated leaf demobnewbold2010-07-201-62/+116
|
* test of serialN.flush()bnewbold2010-07-201-0/+45
|
* updated vga demos to use SerialUSB.end()bnewbold2010-07-202-0/+9
|
* TMP: test updatesbnewbold2010-07-202-3/+12
|
* wirish implementation of timers plus testbnewbold2010-07-201-3/+133
|
* timers progressbnewbold2010-07-203-259/+50
| | | | examples code cleanup, more descriptive comments, more notes
* awesome vga demos, need vga+systick disabledbnewbold2010-07-202-0/+167
|
* good quality vga leaf logo; usb+systick disabledbnewbold2010-07-202-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 timeoutbnewbold2010-07-191-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 constructorsPerry Hung2010-06-255-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)bnewbold2010-06-161-2/+2
|
* new QA testing modesbnewbold2010-06-152-0/+92
|
* helpful debug programbnewbold2010-06-111-0/+42
|
* test session serial fixbnewbold2010-06-071-3/+3
|
* fixed examplebnewbold2010-06-051-5/+5
|
* example updates...bnewbold2010-06-041-523/+524
|
* Preliminary wirish USBSerial implementation.Perry Hung2010-06-042-7/+0
| | | | | | -updated examples -removed HardwareUSB -cleaned up a handful of includes
* finish cxxabi-compat refactorbnewbold2010-04-291-7/+0
| | | | perry forgot to add/edit these...
* Fixed examples, added spi example, moved pure virtual function handlerPerry Hung2010-04-292-20/+73
| | | | out of main to cxxabi-compat.cpp.
* updated test-session with new banner art etcbnewbold2010-04-271-64/+163
|
* mostly complete new interactive hardware testing programbnewbold2010-04-211-0/+437
|
* 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.
* Major hierarchy reorganization; see README.bnewbold2010-03-311-0/+66
copy-to-ide and Makefile updated to conform; .gitignore added; LICENSE added