20 lines
368 B
TOML
20 lines
368 B
TOML
|
|
# GPS Module Configuration
|
||
|
|
|
||
|
|
[neo6m]
|
||
|
|
# UART Configuration
|
||
|
|
uart_num = 1
|
||
|
|
baud_rate = 9600
|
||
|
|
tx_pin = 17
|
||
|
|
rx_pin = 16
|
||
|
|
|
||
|
|
# GPS Settings
|
||
|
|
update_rate = 1000 # ms
|
||
|
|
min_satellites = 4 # Minimum satellites for valid fix
|
||
|
|
|
||
|
|
# Anchor Alarm Settings
|
||
|
|
default_radius = 50 # meters
|
||
|
|
alarm_check_interval = 5000 # ms
|
||
|
|
|
||
|
|
# Power Management
|
||
|
|
power_save_mode = false # Future implementation
|