-
Notifications
You must be signed in to change notification settings - Fork 15.3k
feat(boards/saam_saampixv1_1): add board support for saampixv1_1 #26902
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
ashwanisihag
wants to merge
9
commits into
PX4:main
Choose a base branch
from
ashwanisihag:saam_saampixv1_1_pr
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 7 commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
470b552
boards: add saampixv1_1 target for firmware release
ashwanisihag cb890f3
boards: fix reviewer feedback for saampixv1_1 board
cd78f7a
fix: update copyright years to 2020-2026 for all SaamPixV1_1 board files
4d11b78
fix: correct USB vendor string to PX4 for saampixv1_1 board
64a7af7
fix: assign unique USB product ID 0x008E for saampixv1_1 board
6d84974
fix: update stale file path comment in board.h to correct saampixv1_1…
19ddf18
fix(boards/saampixv1_1): update bootloader artifact board identity
ashwanisihag 9293ea3
fix(pr26902): scope cleanup and copyright attribution
ashwanisihag badf79d
fix(saampixv1_1): use board vendor USB string
ashwanisihag File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 |
|---|---|---|
| @@ -1,18 +1,16 @@ | ||
| #!/bin/sh | ||
| # | ||
| # Airmind Mindpx-v2 specific board sensors init | ||
| # Hybrid SaamPix sensor init on stable MindPXv2 platform | ||
| #------------------------------------------------------------------------------ | ||
|
|
||
| board_adc start | ||
|
|
||
| # Internal I2C bus | ||
| hmc5883 -T -I -R 12 start | ||
| qmc5883l -I -R 6 start | ||
| # external I2C compasses, if present | ||
| hmc5883 -X start | ||
| qmc5883l -X start | ||
|
|
||
| mpu6000 -s -R 2 start | ||
| mpu6500 -s -R 2 start | ||
| lsm303d -s -R 10 start | ||
| l3gd20 -s -R 14 start | ||
|
|
||
| # Internal SPI | ||
| # internal SPI sensors | ||
| ms5611 -s start | ||
| icm20602 -s start | ||
| mpu9250 -s start | ||
| lis3mdl -s start |
This file contains hidden or 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 hidden or 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,107 @@ | ||
| CONFIG_BOARD_TOOLCHAIN="arm-none-eabi" | ||
| CONFIG_BOARD_ARCHITECTURE="cortex-m4" | ||
| CONFIG_BOARD_CONSTRAINED_MEMORY=y | ||
| CONFIG_BOARD_SERIAL_GPS1="/dev/ttyS3" | ||
| CONFIG_BOARD_SERIAL_TEL1="/dev/ttyS1" | ||
| CONFIG_BOARD_SERIAL_TEL2="/dev/ttyS2" | ||
| CONFIG_DRIVERS_ADC_ADS1115=y | ||
| CONFIG_DRIVERS_ADC_BOARD_ADC=y | ||
| CONFIG_COMMON_BAROMETERS=y | ||
| CONFIG_DRIVERS_BATT_SMBUS=y | ||
| CONFIG_DRIVERS_CAMERA_CAPTURE=y | ||
| CONFIG_DRIVERS_CAMERA_TRIGGER=y | ||
| CONFIG_DRIVERS_CDCACM_AUTOSTART=y | ||
| CONFIG_COMMON_DIFFERENTIAL_PRESSURE=y | ||
| CONFIG_COMMON_DISTANCE_SENSOR=y | ||
| CONFIG_DRIVERS_GPS=y | ||
| CONFIG_DRIVERS_IMU_INVENSENSE_ICM20948=y | ||
| CONFIG_DRIVERS_IMU_INVENSENSE_MPU6000=y | ||
| CONFIG_DRIVERS_IMU_INVENSENSE_MPU6500=y | ||
| CONFIG_DRIVERS_IMU_ST_L3GD20=y | ||
| CONFIG_DRIVERS_IMU_ST_LSM303D=y | ||
| CONFIG_DRIVERS_IMU_INVENSENSE_ICM20602=y | ||
| CONFIG_DRIVERS_IMU_INVENSENSE_MPU9250=y | ||
| CONFIG_DRIVERS_IRLOCK=y | ||
| CONFIG_COMMON_LIGHT=y | ||
| CONFIG_COMMON_MAGNETOMETER=y | ||
| CONFIG_DRIVERS_MAGNETOMETER_LIS3MDL=y | ||
| CONFIG_DRIVERS_PCA9685_PWM_OUT=y | ||
| CONFIG_DRIVERS_POWER_MONITOR_INA226=y | ||
| CONFIG_DRIVERS_PWM_INPUT=y | ||
| CONFIG_DRIVERS_PWM_OUT=y | ||
| CONFIG_DRIVERS_RC_INPUT=y | ||
| CONFIG_DRIVERS_SMART_BATTERY_BATMON=y | ||
| CONFIG_COMMON_TELEMETRY=y | ||
| CONFIG_DRIVERS_TONE_ALARM=y | ||
| CONFIG_DRIVERS_UAVCAN=y | ||
| CONFIG_BOARD_UAVCAN_INTERFACES=1 | ||
| CONFIG_MODULES_AIRSPEED_SELECTOR=y | ||
| CONFIG_MODULES_ATTITUDE_ESTIMATOR_Q=y | ||
| CONFIG_MODULES_BATTERY_STATUS=y | ||
| CONFIG_MODULES_CAMERA_FEEDBACK=y | ||
| CONFIG_MODULES_COMMANDER=y | ||
| CONFIG_MODULES_CONTROL_ALLOCATOR=y | ||
| CONFIG_MODULES_DATAMAN=y | ||
| CONFIG_MODULES_EKF2=y | ||
| CONFIG_MODULES_ESC_BATTERY=y | ||
| CONFIG_MODULES_EVENTS=y | ||
| CONFIG_MODULES_FLIGHT_MODE_MANAGER=y | ||
| CONFIG_MODULES_FW_ATT_CONTROL=y | ||
| CONFIG_MODULES_FW_AUTOTUNE_ATTITUDE_CONTROL=y | ||
| CONFIG_MODULES_FW_MODE_MANAGER=y | ||
| CONFIG_MODULES_FW_LATERAL_LONGITUDINAL_CONTROL=y | ||
| CONFIG_MODULES_FW_RATE_CONTROL=y | ||
| CONFIG_MODULES_GIMBAL=y | ||
| CONFIG_MODULES_GYRO_CALIBRATION=y | ||
| CONFIG_MODULES_GYRO_FFT=y | ||
| CONFIG_MODULES_LAND_DETECTOR=y | ||
| CONFIG_MODULES_LANDING_TARGET_ESTIMATOR=y | ||
| CONFIG_MODULES_LOAD_MON=y | ||
| CONFIG_MODULES_LOCAL_POSITION_ESTIMATOR=y | ||
| CONFIG_MODULES_LOGGER=y | ||
| CONFIG_MODULES_MAG_BIAS_ESTIMATOR=y | ||
| CONFIG_MODULES_MANUAL_CONTROL=y | ||
| CONFIG_MODULES_MAVLINK=y | ||
| CONFIG_MODULES_MC_ATT_CONTROL=y | ||
| CONFIG_MODULES_MC_AUTOTUNE_ATTITUDE_CONTROL=y | ||
| CONFIG_MODULES_MC_HOVER_THRUST_ESTIMATOR=y | ||
| CONFIG_MODULES_MC_POS_CONTROL=y | ||
| CONFIG_MODULES_MC_RATE_CONTROL=y | ||
| CONFIG_MODULES_NAVIGATOR=y | ||
| CONFIG_MODULES_RC_UPDATE=y | ||
| CONFIG_MODULES_SENSORS=y | ||
| CONFIG_MODULES_SIMULATION_SIMULATOR_SIH=y | ||
| CONFIG_MODULES_TEMPERATURE_COMPENSATION=y | ||
| CONFIG_MODULES_UUV_ATT_CONTROL=y | ||
| CONFIG_MODULES_UUV_POS_CONTROL=y | ||
| CONFIG_MODULES_VTOL_ATT_CONTROL=y | ||
| CONFIG_SYSTEMCMDS_ACTUATOR_TEST=y | ||
| CONFIG_SYSTEMCMDS_BL_UPDATE=y | ||
| CONFIG_SYSTEMCMDS_BSONDUMP=y | ||
| CONFIG_SYSTEMCMDS_DUMPFILE=y | ||
| CONFIG_SYSTEMCMDS_GPIO=y | ||
| CONFIG_SYSTEMCMDS_HARDFAULT_LOG=y | ||
| CONFIG_SYSTEMCMDS_I2CDETECT=y | ||
| CONFIG_SYSTEMCMDS_LED_CONTROL=y | ||
| CONFIG_SYSTEMCMDS_MFT=y | ||
| CONFIG_SYSTEMCMDS_MTD=y | ||
| CONFIG_SYSTEMCMDS_NSHTERM=y | ||
| CONFIG_SYSTEMCMDS_PARAM=y | ||
| CONFIG_SYSTEMCMDS_PERF=y | ||
| CONFIG_SYSTEMCMDS_REBOOT=y | ||
| CONFIG_SYSTEMCMDS_REFLECT=y | ||
| CONFIG_SYSTEMCMDS_SD_BENCH=y | ||
| CONFIG_SYSTEMCMDS_SD_STRESS=y | ||
| CONFIG_SYSTEMCMDS_SERIAL_TEST=y | ||
| CONFIG_SYSTEMCMDS_SYSTEM_TIME=y | ||
| CONFIG_SYSTEMCMDS_TOP=y | ||
| CONFIG_SYSTEMCMDS_TOPIC_LISTENER=y | ||
| CONFIG_SYSTEMCMDS_TUNE_CONTROL=y | ||
| CONFIG_SYSTEMCMDS_UORB=y | ||
| CONFIG_SYSTEMCMDS_USB_CONNECTED=y | ||
| CONFIG_SYSTEMCMDS_VER=y | ||
| CONFIG_SYSTEMCMDS_WORK_QUEUE=y | ||
| CONFIG_EXAMPLES_FAKE_GPS=y | ||
| CONFIG_BOARD_VENDOR="saam" | ||
| CONFIG_BOARD_MODEL="saampixv1_1" | ||
| CONFIG_BOARD_NAME="SaamPixV1_1" |
Binary file not shown.
This file contains hidden or 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,13 @@ | ||
| { | ||
| "board_id": 1, | ||
| "magic": "PX4FWv1", | ||
| "description": "Firmware for the SaamPixV1_1 board", | ||
| "image": "", | ||
| "build_time": 0, | ||
| "summary": "SaamPixV1_1", | ||
| "version": "1.1", | ||
| "image_size": 0, | ||
| "image_maxsize": 2080768, | ||
| "git_identity": "", | ||
| "board_revision": 0 | ||
| } |
This file contains hidden or 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,7 @@ | ||
| #!/bin/sh | ||
| # | ||
| # board specific defaults | ||
| #------------------------------------------------------------------------------ | ||
|
|
||
| param set-default BAT1_V_DIV 10.1 | ||
| param set-default BAT1_A_PER_V 17.0 |
This file contains hidden or 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,16 @@ | ||
| #!/bin/sh | ||
| # | ||
| # SaamPixV1_1 specific board sensors init | ||
| #------------------------------------------------------------------------------ | ||
|
|
||
| board_adc start | ||
|
|
||
| # external I2C compasses, if present | ||
| hmc5883 -X start | ||
| qmc5883l -X start | ||
|
|
||
| # internal SPI sensors | ||
| ms5611 -s start | ||
| icm20602 -s start | ||
| mpu9250 -s start | ||
| lis3mdl -s start |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same here