mirror of
https://github.com/meshtastic/Meshtastic-Android.git
synced 2026-04-20 22:23:37 +00:00
feat: upcoming support for tak and trafficmanagement configs, device hw (#4671)
Signed-off-by: James Rich <2199651+jamesarich@users.noreply.github.com>
This commit is contained in:
parent
a07992530c
commit
b2b21e10e2
33 changed files with 737 additions and 891 deletions
|
|
@ -1349,5 +1349,47 @@
|
|||
"images": [
|
||||
"tbeam-1w.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"hwModel": 123,
|
||||
"hwModelSlug": "T5_S3_EPAPER_PRO",
|
||||
"platformioTarget": "t5-s3-epaper-pro",
|
||||
"architecture": "esp32-s3",
|
||||
"activelySupported": true,
|
||||
"supportLevel": 1,
|
||||
"displayName": "LilyGo T5 S3 ePaper Pro",
|
||||
"tags": [
|
||||
"LilyGo"
|
||||
],
|
||||
"hasMui": true,
|
||||
"partitionScheme": "8MB"
|
||||
},
|
||||
{
|
||||
"hwModel": 124,
|
||||
"hwModelSlug": "TBEAM_BPF",
|
||||
"platformioTarget": "tbeam-bpf",
|
||||
"architecture": "esp32-s3",
|
||||
"activelySupported": true,
|
||||
"supportLevel": 1,
|
||||
"displayName": "LilyGo T-Beam BPF",
|
||||
"tags": [
|
||||
"LilyGo"
|
||||
],
|
||||
"hasMui": false,
|
||||
"partitionScheme": "8MB"
|
||||
},
|
||||
{
|
||||
"hwModel": 125,
|
||||
"hwModelSlug": "MINI_EPAPER_S3",
|
||||
"platformioTarget": "mini-epaper-s3",
|
||||
"architecture": "esp32-s3",
|
||||
"activelySupported": true,
|
||||
"supportLevel": 1,
|
||||
"displayName": "LilyGo T-Mini E-paper S3 Kit",
|
||||
"tags": [
|
||||
"LilyGo"
|
||||
],
|
||||
"hasMui": true,
|
||||
"partitionScheme": "8MB"
|
||||
}
|
||||
]
|
||||
|
|
@ -61,7 +61,9 @@ import org.meshtastic.feature.settings.radio.component.SecurityConfigScreen
|
|||
import org.meshtastic.feature.settings.radio.component.SerialConfigScreen
|
||||
import org.meshtastic.feature.settings.radio.component.StatusMessageConfigScreen
|
||||
import org.meshtastic.feature.settings.radio.component.StoreForwardConfigScreen
|
||||
import org.meshtastic.feature.settings.radio.component.TAKConfigScreen
|
||||
import org.meshtastic.feature.settings.radio.component.TelemetryConfigScreen
|
||||
import org.meshtastic.feature.settings.radio.component.TrafficManagementConfigScreen
|
||||
import org.meshtastic.feature.settings.radio.component.UserConfigScreen
|
||||
import kotlin.reflect.KClass
|
||||
|
||||
|
|
@ -167,6 +169,11 @@ fun NavGraphBuilder.settingsGraph(navController: NavHostController) {
|
|||
|
||||
ModuleRoute.STATUS_MESSAGE ->
|
||||
StatusMessageConfigScreen(viewModel, onBack = navController::popBackStack)
|
||||
|
||||
ModuleRoute.TRAFFIC_MANAGEMENT ->
|
||||
TrafficManagementConfigScreen(viewModel, onBack = navController::popBackStack)
|
||||
|
||||
ModuleRoute.TAK -> TAKConfigScreen(viewModel, onBack = navController::popBackStack)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue