Skip to content

Commit

Permalink
Merge pull request #6 from weston-embedded/release/4.06.01
Browse files Browse the repository at this point in the history
Release/4.06.01
  • Loading branch information
wes-jmagasrevy authored May 20, 2021
2 parents 57cc8a2 + ebc7ab1 commit 702c6d3
Show file tree
Hide file tree
Showing 106 changed files with 327 additions and 202 deletions.
2 changes: 1 addition & 1 deletion App/Device/app_usbd.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
* TEMPLATE
*
* Filename : app_usbd.c
* Version : V4.06.00
* Version : V4.06.01
*********************************************************************************************************
*/

Expand Down
2 changes: 1 addition & 1 deletion App/Device/app_usbd.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
* TEMPLATE
*
* Filename : app_usbd.h
* Version : V4.06.00
* Version : V4.06.01
*********************************************************************************************************
*/

Expand Down
2 changes: 1 addition & 1 deletion App/Device/app_usbd_audio.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
* TEMPLATE
*
* Filename : app_usbd_audio.c
* Version : V4.06.00
* Version : V4.06.01
*********************************************************************************************************
*/

Expand Down
2 changes: 1 addition & 1 deletion App/Device/app_usbd_cdc.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
* TEMPLATE
*
* Filename : app_usbd_cdc.c
* Version : V4.06.00
* Version : V4.06.01
*********************************************************************************************************
*/

Expand Down
2 changes: 1 addition & 1 deletion App/Device/app_usbd_cdc_eem.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
* TEMPLATE
*
* Filename : app_usbd_cdc_eem.c
* Version : V4.06.00
* Version : V4.06.01
*********************************************************************************************************
*/

Expand Down
2 changes: 1 addition & 1 deletion App/Device/app_usbd_hid.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
* TEMPLATE
*
* Filename : app_usbd_hid.c
* Version : V4.06.00
* Version : V4.06.01
*********************************************************************************************************
*/

Expand Down
2 changes: 1 addition & 1 deletion App/Device/app_usbd_msc.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
* TEMPLATE
*
* Filename : app_usbd_msc.c
* Version : V4.06.00
* Version : V4.06.01
*********************************************************************************************************
*/

Expand Down
2 changes: 1 addition & 1 deletion App/Device/app_usbd_phdc.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
* TEMPLATE
*
* Filename : app_usbd_phdc.c
* Version : V4.06.00
* Version : V4.06.01
*********************************************************************************************************
*/

Expand Down
2 changes: 1 addition & 1 deletion App/Device/app_usbd_vendor.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
* TEMPLATE
*
* Filename : app_usbd_vendor.c
* Version : V4.06.00
* Version : V4.06.01
*********************************************************************************************************
*/

Expand Down
4 changes: 3 additions & 1 deletion App/Device/usbd_audio_drv_simulation.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
* USB AUDIO SIMULATION DRIVER
*
* Filename : usbd_audio_drv_simulation.c
* Version : V4.06.00
* Version : V4.06.01
*********************************************************************************************************
*/

Expand Down Expand Up @@ -1445,6 +1445,7 @@ static CPU_BOOLEAN USBD_Audio_DrvSimulation_CircularBufStreamStore (USBD_AUDIO
CPU_CRITICAL_ENTER();
nxt_ix = (p_circular_buf->IxIn + 1u) % USBD_AUDIO_DRV_SIMULATION_CIRCULAR_AUDIO_BUF_SIZE;;
if (nxt_ix == p_circular_buf->IxOut) { /* check if buffer full. */
CPU_CRITICAL_EXIT();
return (DEF_FAIL);
}

Expand Down Expand Up @@ -1484,6 +1485,7 @@ static CPU_INT08U *USBD_Audio_DrvSimulation_CircularBufStreamGet (USBD_AUDIO_D

CPU_CRITICAL_ENTER();
if (p_circular_buf->IxOut == p_circular_buf->IxIn) { /* check if buffer empty. */
CPU_CRITICAL_EXIT();
return (DEF_NULL);
}

Expand Down
2 changes: 1 addition & 1 deletion App/Device/usbd_audio_drv_simulation.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
* USB AUDIO SIMULATION DRIVER
*
* Filename : usbd_audio_drv_simulation.h
* Version : V4.06.00
* Version : V4.06.01
*********************************************************************************************************
*/

Expand Down
2 changes: 1 addition & 1 deletion App/Device/usbd_audio_drv_simulation_data.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
* USB AUDIO SIMULATION DRIVER DATA
*
* Filename : usbd_audio_drv_simulation_data.c
* Version : V4.06.00
* Version : V4.06.01
*********************************************************************************************************
*/

Expand Down
4 changes: 2 additions & 2 deletions Cfg/Template/usbd_audio_dev_cfg.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* uC/USB-Device
* The Embedded USB Device Stack
*
* Copyright 2004-2020 Silicon Laboratories Inc. www.silabs.com
* Copyright 2004-2021 Silicon Laboratories Inc. www.silabs.com
*
* SPDX-License-Identifier: APACHE-2.0
*
Expand All @@ -20,7 +20,7 @@
* USB AUDIO DEVICE CONFIGURATION FILE
*
* Filename : usbd_audio_dev_cfg.c
* Version : V4.06.00
* Version : V4.06.01
*********************************************************************************************************
* Note(s) : (1) This audio configuration file allows to build the following topologies:
*
Expand Down
4 changes: 2 additions & 2 deletions Cfg/Template/usbd_audio_dev_cfg.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* uC/USB-Device
* The Embedded USB Device Stack
*
* Copyright 2004-2020 Silicon Laboratories Inc. www.silabs.com
* Copyright 2004-2021 Silicon Laboratories Inc. www.silabs.com
*
* SPDX-License-Identifier: APACHE-2.0
*
Expand All @@ -20,7 +20,7 @@
* USB AUDIO DEVICE CONFIGURATION FILE
*
* Filename : usbd_audio_dev_cfg.h
* Version : V4.06.00
* Version : V4.06.01
*********************************************************************************************************
*/

Expand Down
4 changes: 2 additions & 2 deletions Cfg/Template/usbd_cfg.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* uC/USB-Device
* The Embedded USB Device Stack
*
* Copyright 2004-2020 Silicon Laboratories Inc. www.silabs.com
* Copyright 2004-2021 Silicon Laboratories Inc. www.silabs.com
*
* SPDX-License-Identifier: APACHE-2.0
*
Expand All @@ -22,7 +22,7 @@
* TEMPLATE
*
* Filename : usbd_cfg.h
* Version : V4.06.00
* Version : V4.06.01
*********************************************************************************************************
*/

Expand Down
4 changes: 2 additions & 2 deletions Cfg/Template/usbd_dev_cfg.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* uC/USB-Device
* The Embedded USB Device Stack
*
* Copyright 2004-2020 Silicon Laboratories Inc. www.silabs.com
* Copyright 2004-2021 Silicon Laboratories Inc. www.silabs.com
*
* SPDX-License-Identifier: APACHE-2.0
*
Expand All @@ -22,7 +22,7 @@
* TEMPLATE
*
* Filename : usbd_dev_cfg.c
* Version : V4.06.00
* Version : V4.06.01
*********************************************************************************************************
*/

Expand Down
4 changes: 2 additions & 2 deletions Cfg/Template/usbd_dev_cfg.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* uC/USB-Device
* The Embedded USB Device Stack
*
* Copyright 2004-2020 Silicon Laboratories Inc. www.silabs.com
* Copyright 2004-2021 Silicon Laboratories Inc. www.silabs.com
*
* SPDX-License-Identifier: APACHE-2.0
*
Expand All @@ -22,7 +22,7 @@
* TEMPLATE
*
* Filename : usbd_dev_cfg.h
* Version : V4.06.00
* Version : V4.06.01
*********************************************************************************************************
*/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
* TEMPLATE
*
* Filename : usbd_audio_drv_uda1380_codec.c
* Version : V4.06.00
* Version : V4.06.01
*********************************************************************************************************
* Note(s) : (1) The relevant documentation for this driver is:
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
* USB AUDIO DEVICE CONFIGURATION FILE
*
* Filename : usbd_audio_drv_uda1380_codec.h
* Version : V4.06.00
* Version : V4.06.01
*********************************************************************************************************
*/

Expand Down
2 changes: 1 addition & 1 deletion Class/Audio/Drivers/Template/usbd_audio_drv_template.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
* USB AUDIO CODEC DRIVER TEMPLATE
*
* Filename : usbd_audio_drv_template.c
* Version : V4.06.00
* Version : V4.06.01
*********************************************************************************************************
*/

Expand Down
2 changes: 1 addition & 1 deletion Class/Audio/Drivers/Template/usbd_audio_drv_template.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
* USB AUDIO CODEC DRIVER TEMPLATE
*
* Filename : usbd_audio_drv_template.h
* Version : V4.06.00
* Version : V4.06.01
*********************************************************************************************************
*/

Expand Down
4 changes: 2 additions & 2 deletions Class/Audio/OS/Template/usbd_audio_os.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* uC/USB-Device
* The Embedded USB Device Stack
*
* Copyright 2004-2020 Silicon Laboratories Inc. www.silabs.com
* Copyright 2004-2021 Silicon Laboratories Inc. www.silabs.com
*
* SPDX-License-Identifier: APACHE-2.0
*
Expand All @@ -21,7 +21,7 @@
* Template
*
* Filename : usbd_audio_os.c
* Version : V4.06.00
* Version : V4.06.01
*********************************************************************************************************
*/

Expand Down
4 changes: 2 additions & 2 deletions Class/Audio/OS/uCOS-II/usbd_audio_os.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* uC/USB-Device
* The Embedded USB Device Stack
*
* Copyright 2004-2020 Silicon Laboratories Inc. www.silabs.com
* Copyright 2004-2021 Silicon Laboratories Inc. www.silabs.com
*
* SPDX-License-Identifier: APACHE-2.0
*
Expand All @@ -21,7 +21,7 @@
* Micrium uC/OS-II
*
* Filename : usbd_audio_os.c
* Version : V4.06.00
* Version : V4.06.01
*********************************************************************************************************
*/

Expand Down
4 changes: 2 additions & 2 deletions Class/Audio/OS/uCOS-III/usbd_audio_os.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* uC/USB-Device
* The Embedded USB Device Stack
*
* Copyright 2004-2020 Silicon Laboratories Inc. www.silabs.com
* Copyright 2004-2021 Silicon Laboratories Inc. www.silabs.com
*
* SPDX-License-Identifier: APACHE-2.0
*
Expand All @@ -21,7 +21,7 @@
* Micrium uC/OS-III
*
* Filename : usbd_audio_os.c
* Version : V4.06.00
* Version : V4.06.01
*********************************************************************************************************
*/

Expand Down
4 changes: 2 additions & 2 deletions Class/Audio/usbd_audio.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* uC/USB-Device
* The Embedded USB Device Stack
*
* Copyright 2004-2020 Silicon Laboratories Inc. www.silabs.com
* Copyright 2004-2021 Silicon Laboratories Inc. www.silabs.com
*
* SPDX-License-Identifier: APACHE-2.0
*
Expand All @@ -20,7 +20,7 @@
* USB DEVICE AUDIO CLASS
*
* Filename : usbd_audio.c
* Version : V4.06.00
* Version : V4.06.01
*********************************************************************************************************
* Note(s) : (1) This Audio class complies with the following specifications:
*
Expand Down
4 changes: 2 additions & 2 deletions Class/Audio/usbd_audio.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* uC/USB-Device
* The Embedded USB Device Stack
*
* Copyright 2004-2020 Silicon Laboratories Inc. www.silabs.com
* Copyright 2004-2021 Silicon Laboratories Inc. www.silabs.com
*
* SPDX-License-Identifier: APACHE-2.0
*
Expand All @@ -20,7 +20,7 @@
* USB DEVICE AUDIO CLASS
*
* Filename : usbd_audio.h
* Version : V4.06.00
* Version : V4.06.01
*********************************************************************************************************
*/

Expand Down
4 changes: 2 additions & 2 deletions Class/Audio/usbd_audio_internal.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* uC/USB-Device
* The Embedded USB Device Stack
*
* Copyright 2004-2020 Silicon Laboratories Inc. www.silabs.com
* Copyright 2004-2021 Silicon Laboratories Inc. www.silabs.com
*
* SPDX-License-Identifier: APACHE-2.0
*
Expand All @@ -20,7 +20,7 @@
* USB DEVICE AUDIO CLASS
*
* Filename : usbd_audio_internal.h
* Version : V4.06.00
* Version : V4.06.01
*********************************************************************************************************
*/

Expand Down
4 changes: 2 additions & 2 deletions Class/Audio/usbd_audio_os.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* uC/USB-Device
* The Embedded USB Device Stack
*
* Copyright 2004-2020 Silicon Laboratories Inc. www.silabs.com
* Copyright 2004-2021 Silicon Laboratories Inc. www.silabs.com
*
* SPDX-License-Identifier: APACHE-2.0
*
Expand All @@ -20,7 +20,7 @@
* USB DEVICE AUDIO CLASS
*
* Filename : usbd_audio_os.h
* Version : V4.06.00
* Version : V4.06.01
*********************************************************************************************************
*/

Expand Down
4 changes: 2 additions & 2 deletions Class/Audio/usbd_audio_processing.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* uC/USB-Device
* The Embedded USB Device Stack
*
* Copyright 2004-2020 Silicon Laboratories Inc. www.silabs.com
* Copyright 2004-2021 Silicon Laboratories Inc. www.silabs.com
*
* SPDX-License-Identifier: APACHE-2.0
*
Expand All @@ -21,7 +21,7 @@
* PROCESSING LAYER
*
* Filename : usbd_audio_processing.c
* Version : V4.06.00
* Version : V4.06.01
*********************************************************************************************************
* Note(s) : (1) 'goto' statements were used in this software module. Their usage is restricted to
* cleanup purposes in exceptional program flow (e.g. error handling), in compliance
Expand Down
Loading

0 comments on commit 702c6d3

Please sign in to comment.