summaryrefslogtreecommitdiffstats
path: root/bsps/shared/dev/cpucounter/cpucounterfrequency.c
blob: d5249e3134d8271c37cbd6212b6efff0d8eebb36 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/*
 * Copyright (c) 2018 embedded brains GmbH.  All rights reserved.
 *
 * 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;
}