MBED_LPC1768_Test Pulse msec/usec Interval Output P29/P30 & Input P21 Status Send USB Serial Log

Dependencies:   mbed

Committer:
H_Tsunemoto
Date:
Tue May 29 02:41:54 2018 +0000
Revision:
0:47c1b6a0c166
Pulse On/OFF OutPut P29/P30 & Rep Input P21 Status Output USBSerial;

Who changed what in which revision?

UserRevisionLine numberNew contents of line
H_Tsunemoto 0:47c1b6a0c166 1 /* $Id:$
H_Tsunemoto 0:47c1b6a0c166 2
H_Tsunemoto 0:47c1b6a0c166 3 1.13- 2 Mar 2013
H_Tsunemoto 0:47c1b6a0c166 4
H_Tsunemoto 0:47c1b6a0c166 5 * Update RESERVED9 to DMAREQSEL in SETUP.cpp
H_Tsunemoto 0:47c1b6a0c166 6 Thanks Bryce Chee for pointing it out.
H_Tsunemoto 0:47c1b6a0c166 7
H_Tsunemoto 0:47c1b6a0c166 8 1.12- 14 Mar 2011
H_Tsunemoto 0:47c1b6a0c166 9
H_Tsunemoto 0:47c1b6a0c166 10 * Added example4.h that demonstrates alternately sending
H_Tsunemoto 0:47c1b6a0c166 11 two buffers (double buffering) to the DAC. All those
H_Tsunemoto 0:47c1b6a0c166 12 people building MP3 players may find this of interest.
H_Tsunemoto 0:47c1b6a0c166 13
H_Tsunemoto 0:47c1b6a0c166 14 1.11- 13 Mar 2011
H_Tsunemoto 0:47c1b6a0c166 15
H_Tsunemoto 0:47c1b6a0c166 16 * Fixed a silly typo in the documentation of example3.h
H_Tsunemoto 0:47c1b6a0c166 17
H_Tsunemoto 0:47c1b6a0c166 18 1.10- 13 Mar 2011
H_Tsunemoto 0:47c1b6a0c166 19
H_Tsunemoto 0:47c1b6a0c166 20 * The rescheduling showed the timer being stopped and restarted
H_Tsunemoto 0:47c1b6a0c166 21 to perform a new scheduled grab. This was changed to show the
H_Tsunemoto 0:47c1b6a0c166 22 timer free running and the reschedules being setup.
H_Tsunemoto 0:47c1b6a0c166 23
H_Tsunemoto 0:47c1b6a0c166 24 1.9 - 13 Mar 2011
H_Tsunemoto 0:47c1b6a0c166 25
H_Tsunemoto 0:47c1b6a0c166 26 * Improved example3.h to add rescheduling additional grabs
H_Tsunemoto 0:47c1b6a0c166 27 based on the timer setup.
H_Tsunemoto 0:47c1b6a0c166 28
H_Tsunemoto 0:47c1b6a0c166 29 1.8 - 13 Mar 2011
H_Tsunemoto 0:47c1b6a0c166 30
H_Tsunemoto 0:47c1b6a0c166 31 * Renamed example files to .h
H_Tsunemoto 0:47c1b6a0c166 32 * Added pseudo g2m and m2g transferTypes to support GPIO
H_Tsunemoto 0:47c1b6a0c166 33 "memory moves" but triggered by peripheral timer. To
H_Tsunemoto 0:47c1b6a0c166 34 support this new operating mode added example3.h
H_Tsunemoto 0:47c1b6a0c166 35
H_Tsunemoto 0:47c1b6a0c166 36 1.7 - 13 Mar 2011
H_Tsunemoto 0:47c1b6a0c166 37
H_Tsunemoto 0:47c1b6a0c166 38 * Remove the test at the beginning of the channel setup.
H_Tsunemoto 0:47c1b6a0c166 39
H_Tsunemoto 0:47c1b6a0c166 40 1.6 - 8 Mar 2011
H_Tsunemoto 0:47c1b6a0c166 41
H_Tsunemoto 0:47c1b6a0c166 42 * Fixed a typo bug. Reported by Wim van der Vegt
H_Tsunemoto 0:47c1b6a0c166 43 http://mbed.org/forum/mbed/topic/1798/?page=1#comment-9845
H_Tsunemoto 0:47c1b6a0c166 44
H_Tsunemoto 0:47c1b6a0c166 45 1.5 - 5 Feb 2011
H_Tsunemoto 0:47c1b6a0c166 46
H_Tsunemoto 0:47c1b6a0c166 47 * Found a bug in the NXP library that I had copied over.
H_Tsunemoto 0:47c1b6a0c166 48 http://mbed.org/forum/mbed/topic/1798
H_Tsunemoto 0:47c1b6a0c166 49 * Added example2.cpp to support that forum thread.
H_Tsunemoto 0:47c1b6a0c166 50
H_Tsunemoto 0:47c1b6a0c166 51 1.4 - 23/11/2010
H_Tsunemoto 0:47c1b6a0c166 52
H_Tsunemoto 0:47c1b6a0c166 53 * Added some extra overloaded methods to make calling certain
H_Tsunemoto 0:47c1b6a0c166 54 userland API methods simpler.
H_Tsunemoto 0:47c1b6a0c166 55
H_Tsunemoto 0:47c1b6a0c166 56 1.3 - 23/10/2010
H_Tsunemoto 0:47c1b6a0c166 57
H_Tsunemoto 0:47c1b6a0c166 58 * Added the LLI class wrapper.
H_Tsunemoto 0:47c1b6a0c166 59 * Added checking channel's LLI for non-null before auto-disable
H_Tsunemoto 0:47c1b6a0c166 60 of a channel with the ISR.
H_Tsunemoto 0:47c1b6a0c166 61 * Tested with MODSERIAL which is now natively MODDMA "aware".
H_Tsunemoto 0:47c1b6a0c166 62 MODSERIAL can now, using MODDMA, send blocks of bytes out
H_Tsunemoto 0:47c1b6a0c166 63 of it's TX port under DMA control.
H_Tsunemoto 0:47c1b6a0c166 64
H_Tsunemoto 0:47c1b6a0c166 65 1.2 - 23/10/2010
H_Tsunemoto 0:47c1b6a0c166 66
H_Tsunemoto 0:47c1b6a0c166 67 * Improved the IRQ callback attachment API to make
H_Tsunemoto 0:47c1b6a0c166 68 easier attachments when creating configurations.
H_Tsunemoto 0:47c1b6a0c166 69
H_Tsunemoto 0:47c1b6a0c166 70 1.1 - 23/10/2010
H_Tsunemoto 0:47c1b6a0c166 71
H_Tsunemoto 0:47c1b6a0c166 72 * Tidied up example1.cpp
H_Tsunemoto 0:47c1b6a0c166 73 * Removed some unneeded methoids that cause compiler errs.
H_Tsunemoto 0:47c1b6a0c166 74
H_Tsunemoto 0:47c1b6a0c166 75 1.0 - 23/11/2010
H_Tsunemoto 0:47c1b6a0c166 76
H_Tsunemoto 0:47c1b6a0c166 77 * First release
H_Tsunemoto 0:47c1b6a0c166 78
H_Tsunemoto 0:47c1b6a0c166 79 */