summaryrefslogtreecommitdiffstats
path: root/bsps/shared/dev/cpucounter/cpucounterfrequency.c
diff options
context:
space:
mode:
Diffstat (limited to 'bsps/shared/dev/cpucounter/cpucounterfrequency.c')
-rw-r--r--bsps/shared/dev/cpucounter/cpucounterfrequency.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/bsps/shared/dev/cpucounter/cpucounterfrequency.c b/bsps/shared/dev/cpucounter/cpucounterfrequency.c
new file mode 100644
index 0000000000..bbb8c127fe
--- /dev/null
+++ b/bsps/shared/dev/cpucounter/cpucounterfrequency.c
@@ -0,0 +1,20 @@
+/*
+ * Copyright (c) 2018 embedded brains GmbH. All rights reserved.
+ *
+ * embedded brains GmbH
+ * Dornierstr. 4
+ * 82178 Puchheim
+ * Germany
+ * <rtems@embedded-brains.de>
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.rtems.org/license/LICENSE.
+ */
+
+#include <rtems/score/cpu.h>
+
+uint32_t _CPU_Counter_frequency( void )
+{
+ return 1000000000;
+}