Add module reset and fix factory reset return

Previously, it returned a String but was documented to return bytes; it
now returns bytes.
This commit is contained in:
Leonora Tindall 2019-12-31 14:45:45 -08:00
父節點 12cce7213b
當前提交 fa31aab5cf
簽署人: nora
GPG 金鑰 ID: 7A8B52EC67E09AAF
共有 2 個檔案被更改,包括 12 行新增3 行删除

查看文件

@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- `Rn2903::system_version_bytes()`
- `Rn2903::system_factory_reset()`
- `Rn2903::system_module_reset()`
### Changed

查看文件

@ -294,11 +294,19 @@ impl Rn2903 {
self.transact(b"sys get ver")
}
/// Resets the CPU on the connected module. State in memory is lost and the MAC
/// starts up upon reboot, automatically loading default LoRaWAN settings.
///
/// Returns the system version, like `::system_version_bytes()`.
pub fn system_module_reset(&mut self) -> Result<Vec<u8>> {
self.transact(b"sys reset")
}
/// Performs a factory reset on the connected module. All EEPROM values are
/// restored to factory defaults. All LoRaWAN settings set by the user are lost.
///
/// Returns the system version, like `::system_version_bytes()`.
pub fn system_factory_reset(&mut self) -> Result<String> {
let bytes = self.transact(b"sys factoryRESET")?;
Ok(bytes_to_string(&bytes))
pub fn system_factory_reset(&mut self) -> Result<Vec<u8>> {
self.transact(b"sys factoryRESET")
}
}