@@ -16,43 +16,43 @@ const conf_t conf_flash_default = {
1616 .active = false,
1717 .cycle = TIME_S2I (60 * 5 ),
1818 .init_delay = TIME_S2I (60 ),
19- .fixed = false // Add lat, lon alt fields if enabling fixed
19+ .fixed = false // Add lat, lon, alt fields when enabling fixed
2020 },
2121 .radio_conf = {
22- .pwr = 0x1F ,
23- .freq = FREQ_APRS_DYNAMIC ,
24- .mod = MOD_AFSK ,
22+ .pwr = 0x7F ,
23+ .freq = 144800000 ,
24+ .mod = MOD_2FSK ,
2525 .cca = 0x4F ,
2626 },
2727 // App identity
2828 .call = "VK2GJ-12" ,
2929 .path = "WIDE1-1" ,
3030 .symbol = SYM_ANTENNA ,
31- .aprs_msg = true, // Enable APRS message reception on this call sign
31+ .aprs_msg = true, // Enable APRS message reception on this app
3232 },
3333
3434 // Secondary position app
3535 .pos_sec = {
3636 .beacon = {
3737 .active = true,
38- .cycle = TIME_S2I (60 * 5 ),
38+ .cycle = TIME_S2I (60 * 30 ), // Beacon interval
3939 .init_delay = TIME_S2I (60 ),
40- .fixed = true, // Add lat, lon alt fields if enabling fixed
40+ .fixed = true, // Add lat, lon alt fields when enabling fixed
4141 .lat = -337331175 , // Degrees (expressed in 1e-7 form)
4242 .lon = 1511143478 , // Degrees (expressed in 1e-7 form)
4343 .alt = 144 // Altitude in metres
4444 },
4545 .radio_conf = {
4646 .pwr = 0x7F ,
47- .freq = 144800000 ,
48- .mod = MOD_2FSK ,
47+ .freq = FREQ_APRS_RECEIVE ,
48+ .mod = MOD_AFSK ,
4949 .cca = 0x4F
5050 },
5151 // App identity
52- .call = "VK2GJ-15 " ,
53- .path = "" ,
54- .symbol = SYM_ANTENNA ,
55- .aprs_msg = true , // Enable APRS message reception on this call sign
52+ .call = "VK2GJ-5 " ,
53+ .path = "WIDE2-1 " ,
54+ .symbol = SYM_DIGIPEATER ,
55+ .aprs_msg = false , // Enable APRS message reception on this app
5656 },
5757
5858 // Primary image app
@@ -159,17 +159,9 @@ const conf_t conf_flash_default = {
159159 .call = "VK2GJ-5" ,
160160 .path = "WIDE2-1" ,
161161 .symbol = SYM_DIGIPEATER ,
162- .beacon = {
163- // The telemetry beacon service is enabled if true when RX and DIGI are enabled
164- // Receive is resumed after any transmission
165- .active = true,
166- .init_delay = TIME_S2I (20 ),
167- .cycle = TIME_S2I (60 * 30 ), // Beacon interval
168- .fixed = true, // Use fixed position data if true
169- .lat = -337331175 , // Degrees (expressed in 1e-7 form)
170- .lon = 1511143478 , // Degrees (expressed in 1e-7 form)
171- .alt = 144 // Altitude in metres
172- },
162+ // A digipeater beacon can be added using one of the POS apps
163+ // Set the POS identity the same as the dipipeater TX call sign
164+ // Alternatively the digipeater can have its own .beacon entry here
173165 },
174166 },
175167
0 commit comments