-
Notifications
You must be signed in to change notification settings - Fork 13.5k
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
add imu sensor for JFB110 #23626
base: main
Are you sure you want to change the base?
add imu sensor for JFB110 #23626
Conversation
I have made a new PR, I would like you to check the contents of this PR. |
I think it would be better to promote the MURATA IMU sensor separately. ArduPilot's source code is under GPLv3. It is not permissible to reuse GPLv3 source code. Please perform the CRC calculation without using tables. GPLV3 CODE |
@dagar san The Japanese company JAE has conducted tests using the JFB110 and has published comparative data. Incorporating this FC into the PX4-Autopilot master will have the effect of promoting PX4-Autopilot in Japan. https://www.jae.com/files/user/motion-sense-control/catalog/JFB-100_reference-material-ja.pdf https://youtu.be/qOk35gpan_A?si=hx7KK252g5k1b6MB https://youtu.be/qA1bgznHKpY?si=z9WjgqlvE7pI7QQZ https://www.jae.com/Motion_Sensor_Control/eVTOL/FlightController/ |
@jfbblue0922 san I cannot use the firmware upload mode in QGC. Even when specifying 'upload' in make and unplugging and replugging the USB connector, it doesn't proceed to the next action. |
px_uploader.py is searching for the following device: /dev/serial/by-id/-Japan_Aviation_Electronics_Industry_Ltd._JFB-110 However, in defconfig, it is defined as: CONFIG_CDCACM_VENDORSTR="Japan Aviation Electronics Industry Ltd." Please reduce the number of characters, including the bootloader. Trying ['/dev/serial/by-id/-Japan_Aviation_Electronics_Indu_JFB-110', '/dev/serial/by-id/PX4_BL', '/dev/serial/by-id/BL_FMU', '/dev/serial/by-id/usb-The_Autopilot*', '/dev/serial/by-id/usb-Bitcraze*', '/dev/serial/by-id/pci-Bitcraze*', '/dev/serial/by-id/usb-Gumstix*', '/dev/serial/by-id/usb-Hex_ProfiCNC*', '/dev/serial/by-id/usb-UVify*', '/dev/serial/by-id/usb-ArduPilot*'] Found board id: 1110,0 bootloader protocol revision 5 on /dev/serial/by-id/usb-Japan_Aviation_Electronics_Indu_JFB-110_BL_0-if00 Bootloader version: unknown Erase : [====================] 100.0% muramura@ubuntu:~/JFB_PX4$ |
CONFIG_CDCACM_RXBUFSIZE=600 | ||
CONFIG_CDCACM_TXBUFSIZE=12000 | ||
CONFIG_CDCACM_VENDORID=0x0A8E | ||
CONFIG_CDCACM_VENDORSTR="Japan Aviation Electronics Industry Ltd." |
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.
px_uploader.py is searching for the following device: /dev/serial/by-id/-Japan_Aviation_Electronics_Industry_Ltd._JFB-110
However, in defconfig, it is defined as: CONFIG_CDCACM_VENDORSTR="Japan Aviation Electronics Industry Ltd."
Please reduce the number of characters, including the bootloader.
}; | ||
|
||
public: | ||
uint8_t crc8_sae(const uint8_t *data, uint16_t length) |
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.
This method is believed to be borrowed from ArduPilot. ArduPilot is under the GPLv3 license. We cannot incorporate source code under the GPLv3 license.
There are methods that do not use tables.
I added Murata's IMU sensor SCHA63T for JFB-110 and confirmed that the IMU was working properly.
I also required for operation added the JFB-110 board settings and minor FDCAN changes .
For additional features on the JFB-110 board, see #23622.
Thank you.