Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of USBDevice by
Revision 24:33920e3786aa, committed 2014-05-16
- Comitter:
- mbed_official
- Date:
- Fri May 16 09:00:39 2014 +0100
- Parent:
- 23:ecbbaf64bc3d
- Commit message:
- Synchronized with git revision 71a478f780d9221934b90eab64a2c789ba8e51fb
Full URL: https://github.com/mbedmicro/mbed/commit/71a478f780d9221934b90eab64a2c789ba8e51fb/
[LPC11U68] PwmOut and USBDevice support
Changed in this revision
USBDevice/USBEndpoints.h | Show annotated file Show diff for this revision Revisions of this file |
USBDevice/USBHAL_LPC11U.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- a/USBDevice/USBEndpoints.h Sat May 10 08:00:27 2014 +0100 +++ b/USBDevice/USBEndpoints.h Fri May 16 09:00:39 2014 +0100 @@ -39,7 +39,7 @@ /* Include configuration for specific target */ #if defined(TARGET_LPC1768) || defined(TARGET_LPC2368) || defined(TARGET_LPC4088) #include "USBEndpoints_LPC17_LPC23.h" -#elif defined(TARGET_LPC11UXX) || defined(TARGET_LPC1347) +#elif defined(TARGET_LPC11UXX) || defined(TARGET_LPC1347) || defined (TARGET_LPC11U6X) #include "USBEndpoints_LPC11U.h" #elif defined(TARGET_KL25Z) | defined(TARGET_KL46Z) | defined(TARGET_K20D5M) | defined(TARGET_K64F) #include "USBEndpoints_KL25Z.h"
--- a/USBDevice/USBHAL_LPC11U.cpp Sat May 10 08:00:27 2014 +0100 +++ b/USBDevice/USBHAL_LPC11U.cpp Fri May 16 09:00:39 2014 +0100 @@ -16,11 +16,11 @@ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ -#if defined(TARGET_LPC11U24) || defined(TARGET_LPC11U35_401) || defined(TARGET_LPC1347) || defined(TARGET_LPC11U35_501) +#if defined(TARGET_LPC11U24) || defined(TARGET_LPC11U35_401) || defined(TARGET_LPC1347) || defined(TARGET_LPC11U35_501) || defined(TARGET_LPC11U68) #if defined(TARGET_LPC1347) #define USB_IRQ USB_IRQ_IRQn -#elif defined(TARGET_LPC11U24) || defined(TARGET_LPC11U35_401) || defined(TARGET_LPC11U35_501) +#elif defined(TARGET_LPC11U24) || defined(TARGET_LPC11U35_401) || defined(TARGET_LPC11U35_501) || defined(TARGET_LPC11U68) #define USB_IRQ USB_IRQn #endif