Navigation

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    1. Home
    2. Andrey Bondarev
    Andrey Bondarev

    Andrey Bondarev

    @Andrey Bondarev

    1
    Reputation
    21
    Posts
    302
    Profile views
    0
    Followers
    0
    Following
    Joined Last Online

    • Profile
    • More
      • Following
      • Followers
      • Topics
      • Posts
      • Best
      • Groups
    Andrey Bondarev Follow

    Posts made by Andrey Bondarev

    RE: BUG in platformGetOrientation()

    This is legacy function and should not be used in the applications

    posted in The OpenIMU Family •
    RE: Does the PPS code work for the new INS example for OpenIMU?

    PPS sync should work properly as long as 1PPS pulse provided to PPS pin.
    Proper timestamp so far supported only for ublox binary nav-pvt message.

    posted in The OpenIMU Family •
    RE: Does the PPS code work for the new INS example for OpenIMU?

    1 PPS signal is processed inside timer5 interrupt routine.
    ppsDetected is set inside function platformSetPpsTimeStamp(ts)

    posted in The OpenIMU Family •
    RE: STM32F405/src/startup_stm32f405xx.o] Error 1

    Please use next temporary fix:

    Please use the upper .S for Assembly files.

    The library will be updated for next release

    posted in The OpenIMU Family •
    RE: Open IMU300 RI: unable to read VG_AHRS output data

    Hi,

    Please try to do next steps:

    1. Import custom IMU VG_AHRS application for OpenIMU330RI
    2. Update next structure to look like:

    // User output packet codes, change at will
    typedef enum {
    USR_OUT_NONE = 0, // 0
    USR_OUT_TEST, // 1
    USR_OUT_DATA1, // 2
    USR_OUT_DATA2, // 3
    // add new output packet type here, before USR_OUT_MAX
    USR_OUT_SCALED1, // 4
    USR_OUT_ANG1,
    USR_OUT_ANG2,
    USR_OUT_MAX
    } UserOutPacketType;

    1. Update default value of .userPacketType in gUserUartConfig structure to have desired value of the packet rate.
    2. Rebuild and reload application onto unit.
    3. Using ST-Link utility make sure that sector 2 in the MCU flash is write-protected
    4. Power cycle unit.
    5. Using any serial terminal check it packet "a1" coming out of the unit.
    6. Try to connect unit to "developers.aceinna.com" and check incoming data
      If unit connected successfully it's possible to change unit settings.

    Please note though that settings related to the serial port are not saved permanently - only CAN-related settings which can be changed from CAN bus side.

    1. Try to see if
    posted in The OpenIMU Family •
    RE: Mag Align function on OPENIMU300RI

    The request and response format is provided on this page:

    https://openimu.readthedocs.io/en/latest/tutorial/CAN/CAN_J1939_SetCommandMessages.html

    The status of mag alignment needs to be periodically polled while system does full circle (plus some)
    After alignment finishes the values can be permanently stored

    posted in The OpenIMU Family •
    RE: Is it possible to flash programs onto the 300RI?

    You can flash binary images via serial port using python driver bootloader.py. To get detailed instructions please provide FW version of unit you have.

    posted in The OpenIMU Family •
    RE: IMU330 MCU Memory

    @Jack-Morrison We'll try to optimize OpenIMU330 to rid of some features to see if there is possibility to squeeze in INS application. originally it was not designed for that.

    posted in The OpenIMU Family •
    RE: ARM pins on OpenIMU330BI

    @Jack-Morrison OpenIMU300BI pinout documentation updated to reflect MCU pins routed to external BGA contacts. Please check it here (excel file):

    https://openimu.readthedocs.io/en/latest/330BI/pinout.html

    posted in The OpenIMU Family •
    RE: GPS Values From INS app appear quantized

    As a workaroung please change line 350 in the file lib\Core\UARTComm\CommonMessages.c to next:
    pld->pos[i] = dData[i];
    This will be fixed in next release
    Also binary image with this fix will be published on aceinna developers website.

    posted in The OpenIMU Family •