Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
T
trx_test
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
FANG WANG
trx_test
Commits
e7d01103
Commit
e7d01103
authored
Jul 12, 2022
by
ll
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
arm test ok
parent
f3d31d92
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
51 additions
and
0 deletions
+51
-0
backtrace.h
backtrace.h
+35
-0
readme.txt
readme.txt
+10
-0
yunsdr_lib.c
yunsdr_lib.c
+6
-0
No files found.
backtrace.h
0 → 100644
View file @
e7d01103
/*
* Licensed to the OpenAirInterface (OAI) Software Alliance under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The OpenAirInterface Software Alliance licenses this file to You under
* the OAI Public License, Version 1.1 (the "License"); you may not use this file
* except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.openairinterface.org/?page_id=698
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*-------------------------------------------------------------------------------
* For more information about the OpenAirInterface (OAI) Software Alliance:
* contact@openairinterface.org
*/
#include <signal.h>
#ifndef BACKTRACE_H_
#define BACKTRACE_H_
#ifdef __cplusplus
extern
"C"
{
#endif
void
display_backtrace
(
void
);
#ifdef __cplusplus
}
#endif
#endif
/* BACKTRACE_H_ */
readme.txt
0 → 100644
View file @
e7d01103
BUILD:
x86
sudo gcc -o trx trx_test.c yunsdr_lib.c -march=knl -lyunsdr_ss -g
arm
sudo gcc -o trx trx_test.c yunsdr_lib.c -lyunsdr_ss -g
RUN:
sudo ./trx
yunsdr_lib.c
View file @
e7d01103
...
...
@@ -51,6 +51,12 @@
#ifdef __aarch64__
#include <arm_neon.h>
#endif
#if defined(__arm__) || defined(__aarch64__)
#define __m128i int16x8_t
#define __m64 int8x8_t
#endif
//! Number of YUNSDR devices
int
num_devices
=
0
;
#ifdef __GNUC__
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment