mirror of
https://github.com/Fishwaldo/bl_mcu_sdk.git
synced 2025-07-16 01:38:52 +00:00
[feat][nmsis] add nmsis component and nn,dsp demo
This commit is contained in:
parent
b2aada479b
commit
5d1126d0f0
989 changed files with 286224 additions and 0 deletions
38
examples/dsp/BasicMathFunctions_part2/offset.c
Normal file
38
examples/dsp/BasicMathFunctions_part2/offset.c
Normal file
|
@ -0,0 +1,38 @@
|
|||
#include "ref.h"
|
||||
|
||||
void ref_offset_f32(float32_t *pSrc, float32_t offset, float32_t *pDst,
|
||||
uint32_t blockSize)
|
||||
{
|
||||
uint32_t i;
|
||||
|
||||
for (i = 0; i < blockSize; i++) {
|
||||
pDst[i] = pSrc[i] + offset;
|
||||
}
|
||||
}
|
||||
|
||||
void ref_offset_q31(q31_t *pSrc, q31_t offset, q31_t *pDst, uint32_t blockSize)
|
||||
{
|
||||
uint32_t i;
|
||||
|
||||
for (i = 0; i < blockSize; i++) {
|
||||
pDst[i] = ref_sat_q31((q63_t)pSrc[i] + offset);
|
||||
}
|
||||
}
|
||||
|
||||
void ref_offset_q15(q15_t *pSrc, q15_t offset, q15_t *pDst, uint32_t blockSize)
|
||||
{
|
||||
uint32_t i;
|
||||
|
||||
for (i = 0; i < blockSize; i++) {
|
||||
pDst[i] = ref_sat_q15((q31_t)pSrc[i] + offset);
|
||||
}
|
||||
}
|
||||
|
||||
void ref_offset_q7(q7_t *pSrc, q7_t offset, q7_t *pDst, uint32_t blockSize)
|
||||
{
|
||||
uint32_t i;
|
||||
|
||||
for (i = 0; i < blockSize; i++) {
|
||||
pDst[i] = ref_sat_q7((q15_t)pSrc[i] + offset);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue