-
Notifications
You must be signed in to change notification settings - Fork 193
Expand file tree
/
Copy pathmcal_osc_shared.h
More file actions
25 lines (19 loc) · 855 Bytes
/
mcal_osc_shared.h
File metadata and controls
25 lines (19 loc) · 855 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
///////////////////////////////////////////////////////////////////////////////
// Copyright Christopher Kormanyos 2013 - 2021.
// 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_OSC_SHARED_2013_07_09_H_
#define MCAL_OSC_SHARED_2013_07_09_H_
#include <cstdint>
namespace mcal { namespace osc {
struct mcal_osc_shared
{
static constexpr std::uint32_t modulemode_enable = UINT32_C(0x02);
static constexpr std::uint32_t modulemode_mask = UINT32_C(0x03);
static constexpr std::uint32_t idlest_func = UINT32_C(0x00000000);
static constexpr std::uint32_t idlest_mask = UINT32_C(0x00030000);
};
} } // namespace mcal::osc
#endif // MCAL_OSC_SHARED_2013_07_09_H_