-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #224 from OZEO-DOOZ/develop
- Loading branch information
Showing
28 changed files
with
1,269 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
[submodule "Android-nRF-Mesh-Library-1"] | ||
path = Android-nRF-Mesh-Library-1 | ||
url = https://github.com/OZEO-DOOZ/Android-nRF-Mesh-Library-1.git | ||
branch = master | ||
[submodule "IOS-nRF-Mesh-Library"] | ||
path = IOS-nRF-Mesh-Library | ||
url = https://github.com/OZEO-DOOZ/IOS-nRF-Mesh-Library.git |
Submodule Android-nRF-Mesh-Library-1
updated
181 files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule IOS-nRF-Mesh-Library
updated
23 files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
ios/Classes/DoozMeshManagerApi/Channels/Arguments/DoozEpochSetArguments.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
// | ||
// DoozEpochSetArguments.swift | ||
// nordic_nrf_mesh | ||
// | ||
// Created by OZEO DOOZ on 11/02/2022. | ||
// | ||
|
||
import Foundation | ||
|
||
struct DoozEpochSetArguments: BaseFlutterArguments { | ||
let address: Int | ||
let keyIndex: Int | ||
let packed: UInt16 | ||
let epoch: UInt32 | ||
let correlation: UInt32 | ||
let extra: UInt16? | ||
} |
11 changes: 11 additions & 0 deletions
11
ios/Classes/DoozMeshManagerApi/Channels/Arguments/GetPublicationSettingsArguments.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
// | ||
// GetPublicationSettingsArguments.swift | ||
// nordic_nrf_mesh | ||
// | ||
// Created by OZEO DOOZ on 09/02/2022. | ||
// | ||
|
||
struct GetPublicationSettingsArguments: BaseFlutterArguments { | ||
let elementAddress: Int16 | ||
let modelIdentifier: Int | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
lib/src/events/data/dooz_epoch_status/dooz_epoch_status.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import 'package:freezed_annotation/freezed_annotation.dart'; | ||
|
||
part 'dooz_epoch_status.freezed.dart'; | ||
part 'dooz_epoch_status.g.dart'; | ||
|
||
@freezed | ||
class DoozEpochStatusData with _$DoozEpochStatusData { | ||
const factory DoozEpochStatusData( | ||
int tzData, | ||
int command, | ||
int io, | ||
int unused, | ||
int epoch, | ||
int correlation, | ||
int extra, | ||
int source, | ||
int destination, | ||
) = _DoozEpochStatusData; | ||
|
||
factory DoozEpochStatusData.fromJson(Map<String, dynamic> json) => _$DoozEpochStatusDataFromJson(json); | ||
} |
Oops, something went wrong.