Unverified Commit 69d4b8ed authored by Christophe Favergeon's avatar Christophe Favergeon Committed by GitHub
Browse files

Added new ARM_DSP_ATTRIBUTE compilation define. (#188)

* Added new ARM_DSP_ATTRIBUTE compilation define (to set function as weak symbols).
* Added new ARM_DSP_TABLE_ATTRIBUTE compilation define (to set constant table section)
* Added ARM_DSP_CUSTOM_CONFIG to include a "arm_dsp_config.h" than can be used to set previous flags (if not given on command line)
parent 3be81f2a
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -21,8 +21,8 @@
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 */
#ifndef __ARM_COMPUTE_NEMATH_H__
#define __ARM_COMPUTE_NEMATH_H__
#ifndef ARM_COMPUTE_NEMATH_H__
#define ARM_COMPUTE_NEMATH_H__


#if defined(ARM_MATH_NEON)
+2 −2
Original line number Diff line number Diff line
@@ -26,8 +26,8 @@
 * limitations under the License.
 */

#ifndef _ARM_COMMON_TABLES_H
#define _ARM_COMMON_TABLES_H
#ifndef ARM_COMMON_TABLES_H
#define ARM_COMMON_TABLES_H

#include "arm_math_types.h"
#include "dsp/fast_math_functions.h"
+2 −2
Original line number Diff line number Diff line
@@ -26,8 +26,8 @@
 * limitations under the License.
 */

#ifndef _ARM_COMMON_TABLES_F16_H
#define _ARM_COMMON_TABLES_F16_H
#ifndef ARM_COMMON_TABLES_F16_H
#define ARM_COMMON_TABLES_F16_H

#include "arm_math_types_f16.h"

+2 −2
Original line number Diff line number Diff line
@@ -27,8 +27,8 @@
 * limitations under the License.
 */

#ifndef _ARM_CONST_STRUCTS_H
#define _ARM_CONST_STRUCTS_H
#ifndef ARM_CONST_STRUCTS_H
#define ARM_CONST_STRUCTS_H

#include "arm_math_types.h"
#include "arm_common_tables.h"
+2 −2
Original line number Diff line number Diff line
@@ -27,8 +27,8 @@
 * limitations under the License.
 */

#ifndef _ARM_CONST_STRUCTS_F16_H
#define _ARM_CONST_STRUCTS_F16_H
#ifndef ARM_CONST_STRUCTS_F16_H
#define ARM_CONST_STRUCTS_F16_H

#include "arm_math_types_f16.h"
#include "arm_common_tables.h"
Loading