CMSIS_DSP: CMSIS_DSP.c Source File

Modbus RTU XMC47

CMSIS_DSP.c
Go to the documentation of this file.
1 
49 /***********************************************************************************************************************
50  * HEADER FILES
51  **********************************************************************************************************************/
52 
53 #include "cmsis_dsp.h"
54 
55 /***********************************************************************************************************************
56  * MACROS
57  **********************************************************************************************************************/
58 
59 /***********************************************************************************************************************
60  * LOCAL DATA
61  **********************************************************************************************************************/
62 
63 /***********************************************************************************************************************
64  * LOCAL ROUTINES
65  **********************************************************************************************************************/
66 
67 /**********************************************************************************************************************
68  * API IMPLEMENTATION
69  **********************************************************************************************************************/
70 
71 /* Retrieve the version of the CMSIS_DSP APP */
72 DAVE_APP_VERSION_t CMSIS_DSP_GetAppVersion(void)
73 {
74  DAVE_APP_VERSION_t version;
75 
76  version.major = CMSIS_DSP_MAJOR_VERSION;
77  version.minor = CMSIS_DSP_MINOR_VERSION;
78  version.patch = CMSIS_DSP_PATCH_VERSION;
79 
80  return version;
81 }