Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions schema/core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,36 +11,43 @@ registers:
type: U8
access: Read
description: Specifies the major hardware version of the device.
deprecated: true
HardwareVersionLow:
address: 2
type: U8
access: Read
description: Specifies the minor hardware version of the device.
deprecated: true
AssemblyVersion:
address: 3
type: U8
access: Read
description: Specifies the version of the assembled components in the device.
deprecated: true
CoreVersionHigh:
address: 4
type: U8
access: Read
description: Specifies the major version of the Harp core implemented by the device.
deprecated: true
CoreVersionLow:
address: 5
type: U8
access: Read
description: Specifies the minor version of the Harp core implemented by the device.
deprecated: true
FirmwareVersionHigh:
address: 6
type: U8
access: Read
description: Specifies the major version of the Harp core implemented by the device.
deprecated: true
FirmwareVersionLow:
address: 7
type: U8
access: Read
description: Specifies the minor version of the Harp core implemented by the device.
deprecated: true
TimestampSeconds:
address: 8
type: U32
Expand Down Expand Up @@ -100,6 +107,7 @@ registers:
type: U16
access: Write
description: Specifies the unique serial number of the device.
deprecated: true
ClockConfiguration:
address: 14
type: U8
Expand Down
4 changes: 4 additions & 0 deletions schema/registers.json
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,10 @@
"type": "string",
"enum": ["public", "private"]
},
"deprecated": {
"description": "Specifies whether the register function is deprecated.",
"type": "boolean"
},
"volatile": {
"description": "Specifies whether register values can be saved in non-volatile memory.",
"type": "boolean"
Expand Down