Skip to content

Commit 702c6d3

Browse files
Merge pull request #6 from weston-embedded/release/4.06.01
Release/4.06.01
2 parents 57cc8a2 + ebc7ab1 commit 702c6d3

File tree

106 files changed

+327
-202
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

106 files changed

+327
-202
lines changed

App/Device/app_usbd.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
* TEMPLATE
2121
*
2222
* Filename : app_usbd.c
23-
* Version : V4.06.00
23+
* Version : V4.06.01
2424
*********************************************************************************************************
2525
*/
2626

App/Device/app_usbd.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
* TEMPLATE
2121
*
2222
* Filename : app_usbd.h
23-
* Version : V4.06.00
23+
* Version : V4.06.01
2424
*********************************************************************************************************
2525
*/
2626

App/Device/app_usbd_audio.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
* TEMPLATE
2121
*
2222
* Filename : app_usbd_audio.c
23-
* Version : V4.06.00
23+
* Version : V4.06.01
2424
*********************************************************************************************************
2525
*/
2626

App/Device/app_usbd_cdc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
* TEMPLATE
2121
*
2222
* Filename : app_usbd_cdc.c
23-
* Version : V4.06.00
23+
* Version : V4.06.01
2424
*********************************************************************************************************
2525
*/
2626

App/Device/app_usbd_cdc_eem.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
* TEMPLATE
2121
*
2222
* Filename : app_usbd_cdc_eem.c
23-
* Version : V4.06.00
23+
* Version : V4.06.01
2424
*********************************************************************************************************
2525
*/
2626

App/Device/app_usbd_hid.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
* TEMPLATE
2121
*
2222
* Filename : app_usbd_hid.c
23-
* Version : V4.06.00
23+
* Version : V4.06.01
2424
*********************************************************************************************************
2525
*/
2626

App/Device/app_usbd_msc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
* TEMPLATE
2121
*
2222
* Filename : app_usbd_msc.c
23-
* Version : V4.06.00
23+
* Version : V4.06.01
2424
*********************************************************************************************************
2525
*/
2626

App/Device/app_usbd_phdc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
* TEMPLATE
2121
*
2222
* Filename : app_usbd_phdc.c
23-
* Version : V4.06.00
23+
* Version : V4.06.01
2424
*********************************************************************************************************
2525
*/
2626

App/Device/app_usbd_vendor.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
* TEMPLATE
2121
*
2222
* Filename : app_usbd_vendor.c
23-
* Version : V4.06.00
23+
* Version : V4.06.01
2424
*********************************************************************************************************
2525
*/
2626

App/Device/usbd_audio_drv_simulation.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
* USB AUDIO SIMULATION DRIVER
1919
*
2020
* Filename : usbd_audio_drv_simulation.c
21-
* Version : V4.06.00
21+
* Version : V4.06.01
2222
*********************************************************************************************************
2323
*/
2424

@@ -1445,6 +1445,7 @@ static CPU_BOOLEAN USBD_Audio_DrvSimulation_CircularBufStreamStore (USBD_AUDIO
14451445
CPU_CRITICAL_ENTER();
14461446
nxt_ix = (p_circular_buf->IxIn + 1u) % USBD_AUDIO_DRV_SIMULATION_CIRCULAR_AUDIO_BUF_SIZE;;
14471447
if (nxt_ix == p_circular_buf->IxOut) { /* check if buffer full. */
1448+
CPU_CRITICAL_EXIT();
14481449
return (DEF_FAIL);
14491450
}
14501451

@@ -1484,6 +1485,7 @@ static CPU_INT08U *USBD_Audio_DrvSimulation_CircularBufStreamGet (USBD_AUDIO_D
14841485

14851486
CPU_CRITICAL_ENTER();
14861487
if (p_circular_buf->IxOut == p_circular_buf->IxIn) { /* check if buffer empty. */
1488+
CPU_CRITICAL_EXIT();
14871489
return (DEF_NULL);
14881490
}
14891491

0 commit comments

Comments
 (0)