forked from ArduPilot/ardupilot
-
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.
AP_HAL_ChibiOS: add MatekG474-GPS hwdef
- Loading branch information
Showing
2 changed files
with
45 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
include ../MatekG474/hwdef-bl.inc | ||
|
||
# disable CAN1 | ||
undef PA11 | ||
undef PA12 |
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,40 @@ | ||
include ../MatekG474/hwdef.inc | ||
|
||
# disable CAN1 | ||
undef PA11 | ||
undef PA12 | ||
|
||
# ----------- GPS | ||
define HAL_PERIPH_ENABLE_GPS | ||
define GPS_MAX_RATE_MS 200 | ||
|
||
define GPS_MAX_RECEIVERS 1 | ||
define GPS_MAX_INSTANCES 1 | ||
|
||
define HAL_PERIPH_GPS_PORT_DEFAULT 2 | ||
|
||
# allow for F9P GPS modules with moving baseline | ||
define GPS_MOVING_BASELINE 1 | ||
|
||
|
||
# ----------- COMPASS | ||
define HAL_PERIPH_ENABLE_MAG | ||
|
||
SPIDEV rm3100 SPI2 DEVID1 MAG_CS MODE0 1*MHZ 1*MHZ | ||
COMPASS RM3100 SPI:rm3100 false ROTATION_PITCH_180 | ||
|
||
define HAL_COMPASS_MAX_SENSORS 1 | ||
|
||
define HAL_PROBE_EXTERNAL_I2C_COMPASSES | ||
|
||
|
||
# ----------- MSP | ||
define HAL_PERIPH_ENABLE_MSP | ||
define HAL_MSP_ENABLED 1 | ||
define AP_PERIPH_MSP_PORT_DEFAULT 3 | ||
|
||
|
||
# larger CAN pool for RTCM data | ||
undef HAL_CAN_POOL_SIZE | ||
define HAL_CAN_POOL_SIZE 12000 | ||
|