Navigation

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    1. Home
    2. song yi wei
    song yi wei

    song yi wei

    @song yi wei

    ywsong@aceinna.com

    1
    Reputation
    29
    Posts
    666
    Profile views
    1
    Followers
    0
    Following
    Joined Last Online
    Website www.github.com/yiweisong Age 18

    • Profile
    • More
      • Following
      • Followers
      • Topics
      • Posts
      • Best
      • Groups
    song yi wei Follow

    Posts made by song yi wei

    RE: python-openimu vs platformio

    python-openimu is an open source project. You can fork it and modify as you expect. It is suitable for custom development.

    posted in The OpenIMU Family •
    RE: Certificate Error with Visual Studio Code
    ModuleNotFoundError: No module named 'can'
    

    About this issue, the temporary solution is to install a dependency named 'python-can'. And we will fix it in next version.

    And could you supply the detailed wrong msg from the executable?

    posted in The OpenIMU Family •
    RE: IMU300RI No Comms after firmware update failed on studio

    Is it fixed by yourself? If you still have problem while upgrading firmware, could you share the FW to us, so that we can simulate the issue at our side?

    posted in The OpenIMU Family •
    RE: How to use Python SDK to get position data?

    @k2ironman Below is some references for you,

    1. pip install openimu
    2. sample code
    import time
    import threading
    from aceinna.tools import Detector
    
    
    def handle_receive_continous_data(packet_type, data):
        # the position data will be in packet_type equals 'pos'
        print(packet_type, data)
    
    def on_find_device(device):
        # prepare to use
        device.setup(None)
        # listen the output data
        device.on('continous',  handle_receive_continous_data)
    
    def prepare():
        detector = Detector(
            device_type='OpenRTK',
            com_port='{DEVICE COM}',
            baudrate=460800)
        detector.find(on_find_device)
    
    if __name__ == '__main__': 
        threading.Thread(target=prepare).start()
    
        while True:
            time.sleep(10)
    
    

    For more advance usage, please take a look of the source code.

    posted in OpenRTK •
    RE: Please fix firmware update online button

    It seems there is a sync command failed, please power on the device again if you encounter the firmware upgrade issue through web.

    posted in OpenRTK •
    RE: OpenRTK330LI: Where can I find the system recovery image ?

    Try to refresh the page. The automatic connect check may be past.

    posted in OpenRTK •
    RE: How to update firmware after online update fails

    If the green LED always flash, when it powers on, it means the device is in bootloader. We may do some steps to get it back.

    1. Send JA command to switch to app mode. The raw command should be 0x55, 0x55, 0x4a, 0x41, 0x00, 0xf5, 0x9d

    2. Upgrade firmware with command line.

    Steps to upgrade OpenRTK330L_GNSS_RTK_INS_v23.05.bin

    • Power off and on your device.
    • Open python driver with specified parameters. Webserver_Win32_2.5.0.exe -c {the actual COM port} --cli. Wait for the device connected.
    • Use command upgrade {the firmware path}
    • Wait for the upgrade progress finished.
    posted in OpenRTK •
    RE: UART connection for flashing: OpenIMU300RI

    Please take a look of the page https://developers.aceinna.com/devices/connect, and try to use python-openimu to connect.

    posted in The OpenIMU Family •
    RE: Connection error

    Send command 55 55 70 47 00 5D 5F with hex format in baudrate 57600, to check if you can get response. If there is any response with serial number, please try to upgrade the firmware again.

    posted in The OpenIMU Family •
    RE: Can program unit, but then it won't communicate

    Here is screenshot with the new bin.
    1618894469431.jpg

    posted in The OpenIMU Family •