Meshtastic App
Toggle table of contents
common
Target filter
common
Switch theme
Search in API
Skip to content
Meshtastic App
feature-firmware
/
org.meshtastic.feature.firmware
/
DfuInternalState
Dfu
Internal
State
common
sealed
interface
DfuInternalState
(
source
)
Inheritors
Connecting
Connected
Starting
EnablingDfuMode
Progress
Validating
Disconnecting
Disconnected
Completed
Aborted
Error
Members
Types
Aborted
Link copied to clipboard
common
data
class
Aborted
(
val
address
:
String
)
:
DfuInternalState
Completed
Link copied to clipboard
common
data
class
Completed
(
val
address
:
String
)
:
DfuInternalState
Connected
Link copied to clipboard
common
data
class
Connected
(
val
address
:
String
)
:
DfuInternalState
Connecting
Link copied to clipboard
common
data
class
Connecting
(
val
address
:
String
)
:
DfuInternalState
Disconnected
Link copied to clipboard
common
data
class
Disconnected
(
val
address
:
String
)
:
DfuInternalState
Disconnecting
Link copied to clipboard
common
data
class
Disconnecting
(
val
address
:
String
)
:
DfuInternalState
Enabling
Dfu
Mode
Link copied to clipboard
common
data
class
EnablingDfuMode
(
val
address
:
String
)
:
DfuInternalState
Error
Link copied to clipboard
common
data
class
Error
(
val
address
:
String
,
val
message
:
String
?
)
:
DfuInternalState
Progress
Link copied to clipboard
common
data
class
Progress
(
val
address
:
String
,
val
percent
:
Int
,
val
speed
:
Float
,
val
avgSpeed
:
Float
,
val
currentPart
:
Int
,
val
partsTotal
:
Int
)
:
DfuInternalState
Starting
Link copied to clipboard
common
data
class
Starting
(
val
address
:
String
)
:
DfuInternalState
Validating
Link copied to clipboard
common
data
class
Validating
(
val
address
:
String
)
:
DfuInternalState
Properties
address
Link copied to clipboard
common
abstract
val
address
:
String