forked from PAWPAW-Mirror/lib_xua
Merge remote-tracking branch 'upstream' into feat/dummy_samps
This commit is contained in:
4
Jenkinsfile
vendored
4
Jenkinsfile
vendored
@@ -153,8 +153,8 @@ pipeline {
|
|||||||
withVS() {
|
withVS() {
|
||||||
bat 'msbuild host_usb_mixer_control.vcxproj /property:Configuration=Release /property:Platform=x64'
|
bat 'msbuild host_usb_mixer_control.vcxproj /property:Configuration=Release /property:Platform=x64'
|
||||||
}
|
}
|
||||||
sh 'mkdir Win/x64'
|
bat 'mkdir Win\\x64'
|
||||||
sh 'mv bin/Release/x64/host_usb_mixer_control.exe Win/x64/xmos_mixer.exe'
|
bat 'mv bin/Release/x64/host_usb_mixer_control.exe Win/x64/xmos_mixer.exe'
|
||||||
archiveArtifacts artifacts: "Win/x64/xmos_mixer.exe", fingerprint: true
|
archiveArtifacts artifacts: "Win/x64/xmos_mixer.exe", fingerprint: true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -214,6 +214,19 @@
|
|||||||
#error Unsupported value for XUA_I2S_N_BITS (only values 16/32 supported)
|
#error Unsupported value for XUA_I2S_N_BITS (only values 16/32 supported)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Number of bits per channel for I2S/TDM. Supported values: 16/32-bit.
|
||||||
|
*
|
||||||
|
* Default: 32 bits
|
||||||
|
*/
|
||||||
|
#ifndef XUA_I2S_N_BITS
|
||||||
|
#define XUA_I2S_N_BITS (32)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if (XUA_I2S_N_BITS != 16) && (XUA_I2S_N_BITS != 32)
|
||||||
|
#error Unsupported value for XUA_I2S_N_BITS (only values 16/32 supported)
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Max supported sample frequency for device (Hz). Default: 192000
|
* @brief Max supported sample frequency for device (Hz). Default: 192000
|
||||||
*/
|
*/
|
||||||
|
|||||||
Reference in New Issue
Block a user