CMSIS-DSP: Update link script for test framework.
parent
1044e5b793
commit
18fe3c157d
@ -1,8 +1,10 @@
|
||||
#include <stdio.h>
|
||||
extern int testmain();
|
||||
#include "arm_math.h"
|
||||
extern int testmain(const char *);
|
||||
|
||||
extern "C" const char *patternData;
|
||||
|
||||
int main()
|
||||
{
|
||||
return(testmain());
|
||||
return(testmain(patternData));
|
||||
}
|
||||
|
||||
@ -0,0 +1,15 @@
|
||||
#include "arm_math.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C"
|
||||
{
|
||||
#endif
|
||||
|
||||
#include "Patterns.h"
|
||||
|
||||
const char *patternData=(const char*)patterns;
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
Loading…
Reference in New Issue