I tried changing it manually,
if chirp.state == CHIRP_SDK_STATE_RUNNING {
chirp.state = CHIRP_SDK_STATE_STOPPED
}
but the error reads it is a get only property.
I tried changing it manually,
if chirp.state == CHIRP_SDK_STATE_RUNNING {
chirp.state = CHIRP_SDK_STATE_STOPPED
}
but the error reads it is a get only property.
Copyright © 2021 Jogjafile Inc.
You cannot set the state of the ChirpSDK. To stop the SDK you need to call the
stopmethod. Then the state will change toCHIRP_SDK_STATE_STOPPED.