Bluenet  5.7.0
Bluenet, firmware for nRF52 smart home devices
Loading...
Searching...
No Matches
state.h
Go to the documentation of this file.
1/*
2 * Author: Crownstone Team
3 * Copyright: Crownstone (https://crownstone.rocks)
4 * Date: Feb 23, 2021
5 * License: LGPLv3+, Apache License 2.0, and/or MIT (triple-licensed)
6 */
7
8#pragma once
9
10#include <stdint.h>
11
12namespace Msws {
13
17class State {
18public:
19 uint64_t x;
20 uint64_t w;
21 uint64_t s;
22};
23
24} // namespace Msws
Wrapper class for internal state of the Msws generator.
Definition: state.h:17
uint64_t x
Definition: state.h:19
uint64_t w
Definition: state.h:20
uint64_t s
Definition: state.h:21
Definition: random.h:43