forked from ckormanyos/real-time-cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmcal_benchmark.h
More file actions
26 lines (22 loc) · 788 Bytes
/
mcal_benchmark.h
File metadata and controls
26 lines (22 loc) · 788 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
///////////////////////////////////////////////////////////////////////////////
// Copyright Christopher Kormanyos 2014.
// Distributed under the Boost Software License,
// Version 1.0. (See accompanying file LICENSE_1_0.txt
// or copy at http://www.boost.org/LICENSE_1_0.txt)
//
#ifndef MCAL_BENCHMARK_2014_04_16_H_
#define MCAL_BENCHMARK_2014_04_16_H_
#include <cstdint>
#include <mcal_port.h>
#include <mcal_reg.h>
namespace mcal
{
namespace benchmark
{
typedef mcal::port::port_pin<std::uint32_t,
std::uint32_t,
mcal::reg::gpio1_base,
UINT32_C(15)> benchmark_port_type;
}
}
#endif // MCAL_BENCHMARK_2014_04_16_H_