Last change
on this file was 14991, checked in by tbretz, 12 years ago |
Added calibration start and calibration end time to RATE_CONTROL/THRESHOLD and send QoS to signal what kind of result we have.
|
File size:
555 bytes
|
Line | |
---|
1 | #ifndef FACT_HeadersRateControl
|
---|
2 | #define FACT_HeadersRateControl
|
---|
3 |
|
---|
4 | namespace RateControl
|
---|
5 | {
|
---|
6 | namespace State
|
---|
7 | {
|
---|
8 | enum states_t
|
---|
9 | {
|
---|
10 | kDimNetworkNA = 1,
|
---|
11 | kDisconnected,
|
---|
12 | kConnecting, // obsolete, not used
|
---|
13 | kConnected,
|
---|
14 |
|
---|
15 | kSettingGlobalThreshold,
|
---|
16 | kGlobalThresholdSet,
|
---|
17 |
|
---|
18 | kInProgress,
|
---|
19 | };
|
---|
20 | };
|
---|
21 |
|
---|
22 | struct DimThreshold
|
---|
23 | {
|
---|
24 | uint16_t threshold;
|
---|
25 | double begin;
|
---|
26 | double end;
|
---|
27 | } __attribute__((__packed__));
|
---|
28 | }
|
---|
29 |
|
---|
30 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.