-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: complete refactor to split router matrix and protocol
- Loading branch information
Showing
11 changed files
with
452 additions
and
345 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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
package levels | ||
|
||
type Level = int | ||
|
||
const ( | ||
MD_Vid uint32 = 1 | ||
) |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package models | ||
|
||
type Model = string | ||
|
||
const ( | ||
NK_3G72 Model = "NK-3G72" | ||
NK_3G64 Model = "NK-3G64" | ||
NK_3G34 Model = "NK-3G34" | ||
NK_3G16 Model = "NK-3G16" | ||
NK_3G16_RCP Model = "NK-3G16-RCP" | ||
NK_3G164 Model = "NK-3G164" | ||
NK_3G164_RCP Model = "NK-3G164-RCP" | ||
) |
Oops, something went wrong.