-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathKconfig.projbuild
47 lines (35 loc) · 1.08 KB
/
Kconfig.projbuild
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
menu "GPS NTP Server"
config GPSNTP_PPS_PIN
int "GPS PPS GPIO number"
default 35
help
GPIO that has GPS PPS signal connected
config GPSNTP_SQW_PIN
int "RTC SQW GPIO number"
default 26
help
GPIO that has RTC SQW signal connected
config GPSNTP_RTC_DRIFT_MAX
int "Maximum drift for RTC pulse"
default 500
help
Maximum drift for RTC pulse
choice GPSNTP_GPS_TYPE
prompt "Select GPS type"
default GPSNTP_GPS_TYPE_GENERIC
help
Select the GPS module type.
config GPSNTP_GPS_TYPE_GENERIC
bool "GPS type is GENERIC"
config GPSNTP_GPS_TYPE_UBLOX6M
bool "GPS type is UBLOX 6M"
config GPSNTP_GPS_TYPE_SKYTRAQ
bool "GPS type is SKYTRAQ"
config GPSNTP_GPS_TYPE_MTK3339
bool "GPS type is MTK3339 (Adafruit Untimate GPS)"
endchoice
config GPSNTP_ENABLE_115220BAUD
depends on !GPSNTP_GPS_TYPE_GENERIC
bool "Enable 115200 baud"
default n
endmenu