`
djsl6071
  • 浏览: 603176 次
  • 性别: Icon_minigender_1
  • 来自: 厦门
社区版块
存档分类
最新评论

USB Programming and Debugging Interface

阅读更多

The software provides the driver and library for the USB Programming and Debugging Interface print. Currently the Motorola MC68x32 and Motorola MPC555 are supported as target microcontrollers.

The PC software is based on the „Java libusb / libusb-win32 wrapper“ project and the main communication and BDI (Background Debugging Interface) specific parts are implemented in Java.

Because the device must be accessed from BlackBox (Component Pascal), a JVM is started from a dll and the java methods are called through the dll (Java Native Interface). To write and read data from the Cypress FX2LP microcontroller, the JVM accesses the USB device driver (LibUsb-Win32) through another dll. This is a nice example to show how to combine different program parts in different programming languages using dlls on Windows. The following schematic gives an illustration of the design.

 

Communication between the host and the device over USB is packet oriented. This ensures flexibility and convenience in implementing new features.

Because USB is a host initiated bus, only the host (PC) can initiate data transfers (see USB in a NutShell for more information about USB). Due to this fact, the device always waits for a response after sending a data packet to the device (by definition). If no response is returned, a timeout exception is thrown. The request and response packet identifiers are defined in the dispatch.h file. Make sure the definitions on the host side (see ch.ntb.mcdp.usb.Dispatch for Main Types) correspond to the values defined in dispatch.h. The packet structure is shown in the following picture.

 

Note that the packet header and packet end identifiers are checked up on correctness in the dispatch methods (device and host). The packet length is limited by the USB transfer size and is 512 bytes in high speed mode and 64 bytes in full speed mode. All request/response data transfer is handled over one OUT and one IN endpoint. A separate IN endpoint is used for the UART data received from the microcontroller. The UART is usually used as logging output.

As mentioned in the „Hardware“ section an external Microwire/SPI Interface Device is used to efficiently communicate with the MPC555. To minimize the work for the Cypress USB microcontroller, BDI commands to the target (MPC555) are looped through the SPI interface without interpreting or changing it in any way. The result of the transaction is sent back to the host. For that reason the host is responsible for preparing the command and interpreting the result. The problem with this approach is, that a complete transaction takes the time consisting of two USB transfers (send command, receive result) and the time the microcontroller needs to process the command between the USB transfers. With large amount of data this can take a lot of time.

For large data transfers a more efficient method has been implemented. After using a start command and setting up a base address, as much data as fits into one USB packet can be sent to the USB microcontroller. It then sends the data in multiply transfers to the target and checks the result for error conditions. Only a success of failure response is sent back to the host. This allows fast transfers of a large amount of data.

1. Installation
1.1. I'm getting an unsatisfied link error.
2. USB
2.1. I'm getting an USBException "USB device with idVendor 0x8235 and idProduct 0x100 not found".
3. MPC555 / MC68332
3.1. The MPC555 / MC68332 does not run code from flash at power up.
3.2. When plugging in the interface print, the MPC555 / MC68332 enters debug mode immediately.
1. Installation
1.1. I'm getting an unsatisfied link error.
1.1.

I'm getting an unsatisfied link error.

 

Make sure the LibusbJava.dll is in the Windows system32 directory (or on the java classpath). This should have been done by the installer. So make sure, the program is installed correctly.

2. USB
2.1. I'm getting an USBException "USB device with idVendor 0x8235 and idProduct 0x100 not found".
2.1.

I'm getting an USBException "USB device with idVendor 0x8235 and idProduct 0x100 not found".

 

Make sure the device is connected to the USB bus. To check if the device is properly installed, go to the Windows Device Manager. The device must be listed under "LibUSB-Win32 Devices" -> "Programming and Debugging Interface". If an unknown device is shown, try to reinstall the driver. The driver will be found automatically.

3. MPC555 / MC68332
3.1. The MPC555 / MC68332 does not run code from flash at power up.
3.2. When plugging in the interface print, the MPC555 / MC68332 enters debug mode immediately.
3.1.

The MPC555 / MC68332 does not run code from flash at power up.

 

The MC68332 needs a different electrical setup than the MPC555. As the MPC555 is the main target processor, the default setting (switch array: 0000) will allow the MPC555 to run code from flash at power up, but not the MC68332. This may be changed by setting the switch array to 1000 (set switch 1, don't set switch 2 to 4).

Note that the interface print must be powered to recognize the switch settings. If it is not powered, the MPC555 will work, but the MC68332 will not run at all. After changing the switch settings the interface print must be power cycled.

3.2.

When plugging in the interface print, the MPC555 / MC68332 enters debug mode immediately.

 

Same as last question.

 Reference: http://inf.ntb.ch/infoportal/help/index.jsp?topic=/ch.ntb.infoportal/projects.html
分享到:
评论

相关推荐

    USB开发大全_第5版_英文原版_高清目录_Jan Axelson

    Now in its Fifth Edition, USB Complete bridges the gap between the technical specifications and the real world of designing and programming devices that connect over the Universal Serial Bus (USB)....

    Writing Windows WDM design drivers

    Aimed at the more ... event logging, sample generic drivers, interrupt handling, Windows NT hardware, system drivers, USB and USB Driver Interface (USBDI), and the Human Input Device (HID) model.

    USBASP原理图

    在使用USBASP进行编程时,首先需要在电脑上安装相应的驱动程序和编程软件,如AVRDUDE(AVR Development Utility for DownLoading Uploads and Debugging Execution)。然后,将USBASP通过ISP接口连接到目标单片机,...

    USB Complete 3rdEdition

    17. Testing and Debugging 471 Tools 471 Hardware Protocol Analyzers 472 Software Protocol Analyzers 475 Traffic Generators 477 Contents xii Testing 477 Compliance Testing 478 WHQL Testing 484 18. ...

    usbispm8的USB下载器

    在STM8的情况下,可能使用SWIM(Single Wire Interface for Programming and Debugging)接口。 4. **隔离电路**:为了保护主系统免受编程过程中可能出现的电源波动影响,通常会加入电平转换和隔离电路。 5. **...

    IOS5 Programming Cookbook

    Based on the provided information from "iOS 5 Programming Cookbook" by Vandad Nahavandipoor, we can derive a comprehensive set of knowledge points related to iOS development using Objective-C....

    NUC501 User's Manual rev.A1.3.pdf

    - **Debug Support**: JTAG interface for debugging and programming. - **Performance**: High-speed processing capabilities. ##### 6.2 System Manager The System Manager controls and manages the overall ...

    STM8+开发环境、最小项目工程、最小系统

    3. **SWIM调试器**:STM8微控制器通常配备SWIM(Slow Wire Interface for Programming and Debugging)接口,用于程序下载和调试。通过USB转SWIM适配器,可以将STM8开发板连接到电脑进行编程和调试。 二、最小系统...

    Bochs - The cross platform IA-32 (x86) emulator

    - converted common USB code plus devices to the new 'usb_common' plugin Now the USB device classes no longer exist twice if both HC plugins are loaded. - added 'pseudo device' in common USB code ...

    stc-isp 下载软件

    1. **编程(Programming)**:该软件支持对STC系列单片机进行在线编程,用户可以通过USB或者串口将编译好的程序代码烧录到单片机的闪存中。这一过程无需硬件编程器,大大简化了开发流程,提高了工作效率。 2. **...

    通过jtag访问单片机English

    JTAG接口在MSP430中的应用主要是为了实现在线编程(In-Circuit Programming)和调试(In-Circuit Debugging)。通过JTAG,开发者可以直接访问单片机的内部寄存器、闪存和RAM,进行程序的烧录、修改和运行状态的实时...

    北邮嵌入操作系统考试题参考.pdf

    1. **API** - Application Programming Interface,是操作系统提供给程序员调用的一组函数、子程序和过程,用于实现不同软件之间的交互和功能调用。 2. **中断** - 分为硬中断和软中断。硬中断是由外部硬件事件(如...

    vxbus_device_driver_developers_guide_6.9

    USB Drivers ....................................................................................................... 17 Interrupt Controller Drivers .......................................................

Global site tag (gtag.js) - Google Analytics