private async Task <bool> InternalSaveChangesAsync(LoRaDevice loRaDevice, bool force)
        {
            if (loRaDevice.FCntUp % 10 == 0 || force)
            {
                return(await loRaDevice.SaveFrameCountChangesAsync());
            }

            return(true);
        }