mirror of
https://github.com/lumapu/ahoy.git
synced 2025-05-09 23:16:38 +02:00
Improve MQTT Power Limit Handling
This commit is contained in:
parent
ac79828eb5
commit
16d348dc0b
2 changed files with 20 additions and 21 deletions
|
@ -58,10 +58,10 @@ typedef enum {
|
|||
} DevControlCmdType;
|
||||
|
||||
typedef enum { // ToDo: to be verified by field tests
|
||||
AbsolutNonPersistent = 0x0000, // 0
|
||||
RelativNonPersistent = 0x0001, // 1
|
||||
AbsolutPersistent = 0x0100, // 256
|
||||
RelativPersistent = 0x0101 // 257
|
||||
AbsolutNonPersistent = 0UL, // 0x0000
|
||||
RelativNonPersistent = 1UL, // 0x0001
|
||||
AbsolutPersistent = 256UL, // 0x0100
|
||||
RelativPersistent = 257UL // 0x0101
|
||||
} PowerLimitControlType;
|
||||
|
||||
// minimum serial interval
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue