From 68a56e52a271d8519e7ddb58b7e25d1de1d51540 Mon Sep 17 00:00:00 2001 From: hathach Date: Fri, 4 Apr 2014 12:22:33 +0700 Subject: [PATCH] remove RF1GHZNODE from board/readme.md dcd_lpc43xx.c - assign ENDPTPRIME with = instead of |= - fix bug with control transfer the determination of complete transferred --> fix keyboard + msc causes fast blinking add osal_semaphore_reset(usbd_control_xfer_sem_hdl) when bus_reset --- boards/board.c | 1 + boards/readme.md | 1 - demos/device/device_cmsis_rtx/.cproject | 113 ++-- demos/device/device_freertos/.cproject | 112 ++-- demos/device/device_os_none/.cproject | 158 +++--- .../device_os_none/device_os_none.uvopt | 490 ++++++++++++++++-- demos/host/host_cmsis_rtx/.cproject | 112 ++-- demos/host/host_freertos/.cproject | 2 +- demos/host/host_os_none/.cproject | 2 +- doxygen/get_started.md | 65 +-- tinyusb/device/dcd_lpc43xx.c | 36 +- tinyusb/device/usbd.c | 1 + 12 files changed, 743 insertions(+), 350 deletions(-) diff --git a/boards/board.c b/boards/board.c index 6830d27e8..e107d68fb 100644 --- a/boards/board.c +++ b/boards/board.c @@ -63,6 +63,7 @@ static uint32_t led_blink_interval_ms = 1000; // default is 1 second void led_blinking_init(void) { + led_blink_interval_ms = 1000; ASSERT(TUSB_ERROR_NONE == osal_task_create( OSAL_TASK_REF(led_blinking_task) ), VOID_RETURN ); } diff --git a/boards/readme.md b/boards/readme.md index c155bdf97..f6c0f619c 100644 --- a/boards/readme.md +++ b/boards/readme.md @@ -7,7 +7,6 @@ This code base already had supported for a handful of boards. However due to my ### NXP MCU ### - [LPCXpresso 11u14](http://www.embeddedartists.com/products/lpcxpresso/lpc11U14_xpr.php) with base board (for some peripherals to work) -- [Microbuilder RF1GHZNODE](http://www.microbuilder.eu/Blog/13-03-14/LPC1xxx_1GHZ_Wireless_Board_Preview.aspx) equipped with LPC11u37 - [LPCXpresso 1347](http://www.embeddedartists.com/products/lpcxpresso/lpc1347_xpr.php) with base board (for some peripherals to work) - [LPCXpresso 1769](http://www.embeddedartists.com/products/lpcxpresso/lpc1347_xpr.php) with base board (for some peripherals to work) - [Embedded Artists LPC4357 OEM & Base board](http://www.embeddedartists.com/products/kits/lpc4357_kit.php) diff --git a/demos/device/device_cmsis_rtx/.cproject b/demos/device/device_cmsis_rtx/.cproject index d467555ed..43331e444 100644 --- a/demos/device/device_cmsis_rtx/.cproject +++ b/demos/device/device_cmsis_rtx/.cproject @@ -365,6 +365,7 @@