forked from zephyrproject-rtos/zephyr
-
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.
In protocols: supported - UBX, NMEA, RICTM2; tested - UBX Out protocols: supported - UBX, NMEA, RICTM3; tested - UBX, NMEA Co-authored-by: Sumit Batra <[email protected]> Signed-off-by: Mayank Mahajan <[email protected]>
- Loading branch information
1 parent
302f065
commit cd5694b
Showing
16 changed files
with
1,485 additions
and
0 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
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,4 @@ | ||
# Copyright 2023 NXP | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
add_subdirectory_ifdef(CONFIG_NEOM8 ublox-neo-m8) |
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,6 @@ | ||
# GNSS configuration options | ||
|
||
# Copyright 2023 NXP | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
rsource "ublox-neo-m8/Kconfig" |
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,6 @@ | ||
# Copyright 2023 NXP | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
zephyr_library() | ||
|
||
zephyr_library_sources(ublox_neo_m8.c) |
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,23 @@ | ||
# ublox NEO-M8 GNSS module configuration options | ||
|
||
# Copyright 2023 NXP | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
menuconfig NEOM8 | ||
bool "u-blox NEO-M8 GNSS Module" | ||
help | ||
Enable the driver for u-blox NEO-M8 GNSS Module. | ||
|
||
if NEOM8 | ||
|
||
module = NEOM8 | ||
module-str = neom8 | ||
source "subsys/logging/Kconfig.template.log_config" | ||
|
||
config NEOM8_INIT_PRIORITY | ||
int "Counter init priority" | ||
default 80 | ||
help | ||
NEO-M8 driver device initialization priority. | ||
|
||
endif # NEOM8 |
Oops, something went wrong.